March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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