Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm new creating Paginated Reports.
I have created a very basic one where I migrated one visual in PBX. I've got the DAX Query from the performance analyzer, replacing the hard-coded value with my data set parameter : @FiscalYear. This parameter mapped to the Report Parameter @Year (INT Type). This is the query (after deleting unnecessary lines):
// DAX Query DEFINE VAR __DS0FilterTable = TREATAS({@FiscalYear}, 'Calendar'[Year]) VAR __DS0Core = SUMMARIZECOLUMNS( 'Calendar'[Year], 'Stores'[store_country], 'Stores'[store_city], 'Stores'[store_name], __DS0FilterTable, "Total_Transactions", 'Transaction_Data'[Total Transactions], "Weekend_Transactions", 'Transaction_Data'[Weekend Transactions], "Total_Cost", 'Transaction_Data'[Total Cost] ) EVALUATE __DS0Core
In Power BI's report the paginated report was working fine for one single value:
Now it is necessary to allow multiple values for the year. I updated the parameter definition for allowing multiples values, but when I execute the report again I've got this message :
Cannot convert value '{ 1997,1998 }' of type Text to type Integer while processing column - [StaticColumn] -> Calendar[Year].
I tried to change the data type to String, and join the values in the FX but without any success.. I have checked other alternatives within the function, always getting the same result.
What do I need to change in the DAX definition or the parameter attributes to reach the expected result ?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
56 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |