Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I'm wondering how I would go about calculating this. I want to know how many properties we have Parking Rate information for, regardless of whether it's reserved parking rates or unreserved.
In the chart below I have 10 properties. Some have info for 1 column or the other, or both. However, counting and suming both columns will give me an inaccurate result, making it seem like we have 80%, when in reality it is 60%. How would I go about calculating this without double counting in certain situations?
Unreserved Parking | Reserved Parking |
$10 | $15 |
$20 | |
$14 | $20 |
$10 | |
$18 | |
$20 |
Thanks!
Solved! Go to Solution.
Hi @peterg417
Try this where Table1 is the table you show:
Measure = COUNTROWS ( FILTER ( Table1, OR ( Table1[Unreserved Parking] <> BLANK (), Table1[Reserved Parking] <> BLANK () ) ) )
to count the number of properties that have info on either type of parking or this measure to calculate the percentage you talk about:
Measure2 = DIVIDE ( COUNTROWS ( FILTER ( Table1, OR ( Table1[Unreserved Parking] <> BLANK (), Table1[Reserved Parking] <> BLANK () ) ) ), COUNTROWS ( Table1 ) )
Hi @peterg417
Try this where Table1 is the table you show:
Measure = COUNTROWS ( FILTER ( Table1, OR ( Table1[Unreserved Parking] <> BLANK (), Table1[Reserved Parking] <> BLANK () ) ) )
to count the number of properties that have info on either type of parking or this measure to calculate the percentage you talk about:
Measure2 = DIVIDE ( COUNTROWS ( FILTER ( Table1, OR ( Table1[Unreserved Parking] <> BLANK (), Table1[Reserved Parking] <> BLANK () ) ) ), COUNTROWS ( Table1 ) )
Thank you!!
I can't verify whether the numbers are correct, but my guess is that they are since they're much lower than when I tried to do it (and the logic in your code makes sense), so I assume that's correct.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |