The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello.
I have this measure that I am currently visualizing inside a card visual.
Solved! Go to Solution.
Average_Time_Response (Days) with Text = CALCULATE( SUM('TABLE'[Time_Response]), 'TABLE'[ResponseDate/Time] <> BLANK() ) / [# Responded] & " Days"
Proud to be a Super User! |
|
@Anonymous , You can try like this
Average_Time_Response (Days) = VAR AvgResponse = CALCULATE( SUM('TABLE'[Time_Response]), 'TABLE'[ResponseDate/Time] <> BLANK() ) / CALCULATE( COUNTROWS('TABLE'), 'TABLE'[ResponseDate/Time] <> BLANK() ) RETURN CONCATENATE(AvgResponse, " days")
Please accept as solution if it helps
Proud to be a Super User! |
|
Thanks. What happened to the original denominator [# Responded]?
Average_Time_Response (Days) with Text = CALCULATE( SUM('TABLE'[Time_Response]), 'TABLE'[ResponseDate/Time] <> BLANK() ) / [# Responded] & " Days"
Proud to be a Super User! |
|
Works! Thanks!
@Anonymous , Welcome
Proud to be a Super User! |
|
User | Count |
---|---|
74 | |
70 | |
39 | |
30 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
48 | |
46 |