Forum Discussion
DAX Measure ?
That's the problem.... the days in period needs to say constant...
If I hard code the 10 into the Calc_Col_II = FORMAT(DIVIDE([DAX_Hours],10*7,2),"0.00%") , it works fine.
I need the DaysInPeriod Measure to equal the the date difference in the slider begin date and end date and stays constant.
Hello PaulCr125,
Create a date table;
DateTable=CALENDAR (MINX (Date, [TicketDate]), MAXX (Date, [TicketDate]))
Make a connection between Date[TicketDate] >DateTable[Date]
Then drag the date colum from the date table in the slicer.
At last, make you're [DaysInPeriod] measure with the dates from the DateTable.
Greets,
Ronald
- PaulCr1257 years agoFrequent Visitor
Ronald123,
That did it... I also understand the theory, and was not aware of the usage of MAXX. I appreciate your patience to bring me through the interative steps to actully understand my solution. Many questioners want it done for them... that returns nothing in knowledge. I will take the knowledge forward, thanks again for your help.
Paul