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.
My project involves me working out poor our data is, We would like to work out how much info has not being entered. We then want express this as percentage per row
Example data:
Animal - Name - Cost - Date
Dog Danny $50 - 1/1/2018 = 0% Empty
Dog null $50 null = 50 % Empty
Dog null null null = 75% Empty
I have played around with caluclated feilds and measures doing simple things but NOTHING like this.
All I can think is something like a variable - like If Animal =null then Row Empty = +1, and then repeat something like this for each cell. From the Row empty value i could write a foumula to convert it into a percentage easily enough but I am stumped on everything before that.
Any ideas, pointers, or simple examples would be most welcome.
Solved! Go to Solution.
I'd create a column
_HowManyAreBlank= IF(ISBLANK([ANIMAL]), 1, 0) + IF(ISBLANK([NAME]), 1, 0) + IF(ISBLANK([COST]), 1, 0) + IF(ISBLANK([DATE]), 1, 0)
This would allow you to create a measure that works for rows, groups, and filters.
I'd create a column
_HowManyAreBlank= IF(ISBLANK([ANIMAL]), 1, 0) + IF(ISBLANK([NAME]), 1, 0) + IF(ISBLANK([COST]), 1, 0) + IF(ISBLANK([DATE]), 1, 0)
This would allow you to create a measure that works for rows, groups, and filters.
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 |
---|---|
98 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
157 | |
101 | |
60 | |
43 | |
40 |