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
Hello,
Let me first show you the measures I am using for this report ...
I believe this is the measure that will need to be tweaked ...
Count of Note ID =
CALCULATE (
CALCULATE(DISTINCTCOUNT(rpt_DD_DailyLog_Dataset[Note_ID]),
KEEPFILTERS ( rpt_DD_DailyLog_Dataset[Modifiers] in { "95", "GT", "GW~95", "GW~GT" })))
Total Encounters =
CALCULATE (
CALCULATE(DISTINCTCOUNT(rpt_DD_DailyLog_Dataset[Note_ID]),
KEEPFILTERS ( NOT ISBLANK ( rpt_DD_DailyLog_Dataset[Submitted_CPT] ) ),
KEEPFILTERS ( NOT ISBLANK ( rpt_DD_DailyLog_Dataset[Billed_CPT] ) )
) )
% of Encounters Telehealth =
DIVIDE([Count of Note ID], [Total Encounters])
Below, in the matrix, I have highlighted where the "Count of Note ID" is blank. I would prefer that would show as a "0" so then the "% of Telehealth Encounters" would give the percenatge.
Let me know if you need any additional information and I will be more than happy to provide!
Thank you in advance!
Solved! Go to Solution.
Just Add +0 after the Formula., to get Zero instead of blank
Proud to be a Super User!
@VijayP , your suggestion worked for the percentage formula, thank you very much!!! 🙂
% of Encounters Telehealth =
IF(DIVIDE([Count of Note ID], [Total Encounters])= BLANK(),0,DIVIDE([Count of Note ID], [Total Encounters]))
Just Add +0 after the Formula., to get Zero instead of blank
Proud to be a Super User!
@VijayP only if all these formula's could be that simple! That worked, thank you very much 🙂 !!!
@VijayP , your suggestion worked for the percentage formula, thank you very much!!! 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |