Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I am trying to get the Paginatd report by putting the measure into it.
i.e. I have report working when I am trying to only use columns.
This is the dax I am using
// DAX Query
Evaluate
SUMMARIZECOLUMNS(
'Sales'[Sales Exec],
'Sales'[Business Manager],
'Sites'[SiteName],
'Sales'[# No Of Sales], -- This is a measure and this is when the error pops in
FILTER(VALUES('Sites'[SiteName]),OR(@Site="All",PATHCONTAINS(@Site,'Sites'[SiteName]))),
FILTER(VALUES('Dates'[Year]),OR(@Year="All",PATHCONTAINS(@Year,'Dates'[Year]))),
FILTER(VALUES('Dates'[MonthNameLong]),OR(@Month="All",PATHCONTAINS(@Month,'Dates'[MonthNameLong]))),
FILTER(VALUES('Sales'[Sales Exec]),OR(@SalesExec="All",PATHCONTAINS(@SalesExec,'Sales'[Sales Exec])))
)
Any help is much appreciated, Thanks in Advance.
This is probably because your syntax is invalid, measures need to be added as expressions after your filters and you need to specify a name for the expression.
eg.
Evaluate
SUMMARIZECOLUMNS(
'Sales'[Sales Exec],
'Sales'[Business Manager],
'Sites'[SiteName],
FILTER(VALUES('Sites'[SiteName]),OR(@Site="All",PATHCONTAINS(@Site,'Sites'[SiteName]))),
FILTER(VALUES('Dates'[Year]),OR(@Year="All",PATHCONTAINS(@Year,'Dates'[Year]))),
FILTER(VALUES('Dates'[MonthNameLong]),OR(@Month="All",PATHCONTAINS(@Month,'Dates'[MonthNameLong]))),
FILTER(VALUES('Sales'[Sales Exec]),OR(@SalesExec="All",PATHCONTAINS(@SalesExec,'Sales'[Sales Exec]))),
"# No Of Sales", 'Sales'[# No Of Sales], -- This is where measure should go
)
Yes, that is because your syntax is still invalid. You did not supply a name for the measure column. If you look at the example I provided previously you will see I added a string parameter with the name for the expression column.
,"# Of Sales" , [# Of Sales]
This is because in SUMMARIZECOLUMNS you can put any expression that returns a scalar value, not just a measure reference.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.