PowerAutomate: How to use 'ReportLevelFilters' input field in the connector 'Export to File for Power BI Reports' - filter

I am trying to extract a PowerBI report as PDF and post it to a teams channel.
I want to export the report with some filters applied.
I tried the input : Overview (A:A)/Division eq 'AE'
It means on the visual Overview (A:A), filter 'AE' in the field 'Division'
It doesn't work. So apparently I think I am doing it wrong :(

Related

Azure Data Factory Dataflow with Azure Synapse Link to Remove Duplicate Records

I am using Azure Synapse Link to connect Azure storage to load the RAW to from CRM. there is option which i choose Append mode only. it is creating a duplicate records if anything changes happen from CRM tables(modules). in that case, how do we handle this scenario, either aggerating in dataflow to remove the duplicate records or else we can handle in dataverse(power apps) itself. kindly advise.
eg :
accountnumber accountname
222 XXX
222 XXX
222 XXX
how do we handle in dataverse side or else dataflow aggregation flows. kindly help me.
links referred : https://learn.microsoft.com/en-us/power-apps/maker/data-platform/azure-synapse-link-advanced-configuration
also i could find in ms docs for below snippet code but where and how do we use, if some please share the screenshot below code.
aggregate(groupBy(mycols = sha2(256,columns())),
each(match(true()), $$ = first($$))) ~> DistinctRows
as per below link :
https://learn.microsoft.com/en-us/azure/data-factory/data-flow-script#distinct-row-using-all-columns
I have tried to repro this in my azure ADF dataflow environment.
Sample source is taken as in below image.
Select the Aggregate transform next to source.
In Aggregate Settings, Click group by and then click Open expression builder
Enter the Column name and enter the expression as sha2(256,columns()) and then click Save and Finish
Then, in aggregate settings, click on the aggregates and then click the Open expression builder
Click on + Add column pattern near column1 and then delete Column1. Then Enter true() in matching condition. Then click on undefined column expression and enter $$ in column name expression and first($$) in value expression. Then click Save and Finish.
Output Of Aggregate Transform
This can be done by writing a script in dataflow. To write a dataflow transformation script , Click the script button
The script for equivalent UI transformation is shown in below image.
By this way, you can aggregate in dataflow and remove the duplicates.

Convert Oracle Standard Report output from text to excel

I have a user requirement to convert oracle standard report (Transaction Historical Summary)'s output into Excel
I have tried to change output to xml to get the xml tags so to make rdf but it ends in error.
What are the steps to convert a standard report's output to excel?
You'd use Report Builder's DESFORMAT=SPREADSHEET parameter; it works for Reports 10gR2 onwards.
Here's a tutorial which shows how to do that: "Building a Report for Spreadsheet Output" (https://docs.oracle.com/cd/B14099_19/bi.1012/b13895/orbr_paptoexcel.htm).
It doesn't make sense to copy/paste all those steps over here, so - have a look, follow the instructions.
If you're on lower version, you'd create a CSV (comma-separated-values) file (choose any delimiter you want, such as comma or semi-colon). Although it is not a XSL(X) file, Excel is capable of opening it nicely.

Trying to generate SSRS report based on input parameters in visual studio

I have an AX query dataset that I'm trying to use to generate an SSRS report. I want to the user to be able to enter 2 parameters (Date and ProjectId) and have the SSRS report return a table based on the query using the parameters inputted by the user. Can't write any code so it needs to be purely graphical.
You can simply add your parameters to query as query ranges.
In the AOT, click Queries, and locate the query that you want to define a range for.
Expand the query, click Data Sources, and then expand a data source.
Right-click Ranges, and then click New Range.
Right-click the new range, click Properties, and then select a field in the Field property list.
Type an expression in the Value property to specify which records are retrieved.
here it's a helpful link for creating queries with ranges:
https://msdn.microsoft.com/en-us/library/bb314753.aspx
Here is a walkthrough to follow:
https://technet.microsoft.com/en-us/library/cc636713.aspx

Cognos: filter alternative?

I've defined a report in Cognos Report Studio.
I've also exposed this report in IBM BAM Business Spaces. I've used Report Viewer widget for that.
This widget allows end users to remove filters defined for the report. The data security is preserved (FGS applied), but they can access irrelevant data for specific report.
I would like to disable this (removing filters). Unfortunately this build-in widget is not allowing that.
As workaround I'm trying to use some other technique than filters to limit the data. I was trying to apply the filtering within the slicer.
My data is quite flat, and the data item I want to filter is not defined as dimension. That's probably the reason why it's not working for me.
I have a table with multiple columns.
My slicer definition:
filter([A_Events Query Subject].[ATracking_Events].[Status Code],
[A_Events Query Subject].[A_Events].[Status Code] = 'Q')
Anyway, all data (not filtered) are shown as a result.
Any idea how this can be solved?

Tableau - How to Use a Condition to Filter week(Date)

I've got google analytics data for goal completions represented in a line graph in Tableau, with the week of the year as the x axis. What I need is to set a conditional filter on WEEK([Date]) so that all but the most recent week is shown. Something like this :
IF DATEPART('week',[Date]) < DATEPART('week',TODAY())
THEN 'Show'
ELSE 'Filter'
END
But when I try this, I get an error saying "The formula must be an aggregate calculation or refer only to this field" .
Could someone fix the formula for me?
Rather than trying to set this in the filter dialog box (I received the same error you experienced when trying to do it that way), use that formula to create a calculated field. Then simply drag that field to the filter box and filter on 'Show'.

Resources