Forum Discussion
Anonymous
2 years agoNot applicable
Static Yearly Timelines
Hello, I have a sort of unique challenge that I am hoping to get some support on. I have a list of reporting deadlines which have static due dates. I would like to add these timelines to my Power...
- Anonymous2 years ago
HI Anonymous,
I'd like to suggest you write a measure expression to check records and return flag, then use it on the 'visual level filter' to filter records who matched with conditions.
Sample formula: check the current report group of records if they include records that match with configured conditions.
Flag = VAR msType = "Requested Date" VAR YearFilter = 2024 VAR currDesc = SELECTEDVALUE ( Table1[Description] ) VAR List = CALCULATETABLE ( VALUES ( Table1[Description] ), FILTER ( ALLSELECTED ( Table1 ), [milestone] = msType && YEAR ( [Date] ) = YearFilter ) ) RETURN IF ( currDesc IN List, "Y", "N" )Regards,
Xiaoxin Sheng
Anonymous
2 years agoNot applicable
Hi Anonymous ,
Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng