Forum Discussion
Assistance in a simple Report
- Anonymous2 years ago
Hi Jaweed ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create a date table .
Table = CALENDAR(DATE(2024,4,1),DATE(2024,12,31))Then create a measure.
Measure = VAR _date = SELECTEDVALUE ( 'Table'[Date] ) RETURN IF ( MAX ( 'Table-company'[Next Review Date] ) <= _date, 1, BLANK () )How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ RongtieIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Jaweed ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create a date table .
Table = CALENDAR(DATE(2024,4,1),DATE(2024,12,31))
Then create a measure.
Measure =
VAR _date =
SELECTEDVALUE ( 'Table'[Date] )
RETURN
IF ( MAX ( 'Table-company'[Next Review Date] ) <= _date, 1, BLANK () )
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.