Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi All,
I am using below query to create a report a paginated report.
DEFINE
VAR BeginDate = DATEVALUE( 'ContractData'[SNAPSHOT_BEGIN_DATE])
VAR EndDate = DATEVALUE( 'ContractData'[SNAPSHOT_END_DATE])
VAR DateFilter=
FILTER(
KEEPFILTERS(VALUES(@Date)),
AND( @Date >= BeginDate, @Date <= EndDate))
EVALUATE SUMMARIZECOLUMNS('ContractData'[ACCOUNT], 'ContractData'[Due Date], RSCustomDaxFilter(@ContractDataCONAME,EqualToCondition,[ContractData].[CO_NAME],String),
DateFilter)
When i validate above query getting "no parameter match for multivalue placeholder"
Could you please help to resolve this issue.
thank you in advance
@LokambaTH , Change this like
VAR DateFilter=
FILTER( 'ContractData',
AND( @Date >= BeginDate, @Date <= EndDate))
or
KEEPFILTERS(AND( @Date >= BeginDate, @Date <= EndDate))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
140 | |
71 | |
64 | |
52 | |
50 |
User | Count |
---|---|
209 | |
92 | |
62 | |
59 | |
56 |