The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I'm running into an issue since the quick measure does not allow for relative date formatting. I'm trying to return the similar functionality of the filter date pane of 'is in this - day'. Which will provide me with a filtered measure of all tickets entered today. I will then duplicate this so I can create another of tickets closed today, etc.
The current DAX code I have is using the quick measure so I can only pick one date. Please let me know what to change so the result will be 'is in this - day'.
QuickMeasureFilter =
CALCULATE(
COUNTA('v_rpt_Service_Summary'[TicketNbr]),
'v_rpt_Service_Summary'[Date_Entered_UTC]
IN { DATE(2015, 4, 23) }
)
hi @maxse
supposing you have a column named data[date], then try to change your quick measure to:
QuickMeasureFilter =
CALCULATE(
COUNTA('v_rpt_Service_Summary'[TicketNbr]),
'v_rpt_Service_Summary'[Date_Entered_UTC]
IN { VALUES(data[date]) }
)
I'm not sure how that is going to return the results for today?
hi @maxse
As you have the data, just try it.
p.s. If you need further input, consider @me in the reply.
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |