Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have a dataset with column MeetingYrQtr based in meeting date, RegionCode and YrQtrName based on another table with dates.
I want to change my dax PBWithMinsTQtrEXP to calculate total ProjsWithMins when MeetingYrQtr = YrQtrName that I selected from the slicer for example "2024 Q1" is the selected value in YrQtrName slicer it should display 12 as total
The display is wrong when i used this formula
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @sjpbi ,
You can use var _select = selectedvalue(Dim_Date_ALL[YrQtrName])) to get the year you want, so your expression should change to PBMins[MeetingYrQtr]=_select
Best regards,
Community Support Team_ Scott Chang