Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I want to get a % of filled rows vs blank rows.
This is to get a compliance check, where we need to be able to click on the total % blanks at the bottom and get them to filter on those rows,
I have a table with a lot of columns so ideally I'm looking for something that can be easily copied to other columns.
e.g.
County | Transmission number |
5555 | |
London | 4465 |
Dublin | |
67% | 67% |
Solved! Go to Solution.
Hi @Anonymous
If you have many columns, for example
In my method,
i open Edit queries, copy the original table,
In the "Table copy",
add an index column from 1,
delete "change type" step from the right step pane,
then select "index" column, next select "Unpivot other columns",
Close&&apply
Create measures in "Table copy"
all count = CALCULATE(COUNTA('Table copy'[Value]),ALLEXCEPT('Table copy','Table copy'[Attribute])) blank count = IF ( CALCULATE ( COUNTBLANK ( 'Table copy'[Value] ), ALLEXCEPT ( 'Table copy', 'Table copy'[Attribute] ) ) = BLANK (), 0, CALCULATE ( COUNTBLANK ( 'Table copy'[Value] ), ALLEXCEPT ( 'Table copy', 'Table copy'[Attribute] ) ) ) blank% = [blank count]/[all count] no blank% = ([all count]-[blank count])/[all count] Measure = IF(ISINSCOPE('Table copy'[Index]),MAX('Table copy'[Value]),FORMAT([no blank%],"0.00%"))
Hi @Anonymous
If you have many columns, for example
In my method,
i open Edit queries, copy the original table,
In the "Table copy",
add an index column from 1,
delete "change type" step from the right step pane,
then select "index" column, next select "Unpivot other columns",
Close&&apply
Create measures in "Table copy"
all count = CALCULATE(COUNTA('Table copy'[Value]),ALLEXCEPT('Table copy','Table copy'[Attribute])) blank count = IF ( CALCULATE ( COUNTBLANK ( 'Table copy'[Value] ), ALLEXCEPT ( 'Table copy', 'Table copy'[Attribute] ) ) = BLANK (), 0, CALCULATE ( COUNTBLANK ( 'Table copy'[Value] ), ALLEXCEPT ( 'Table copy', 'Table copy'[Attribute] ) ) ) blank% = [blank count]/[all count] no blank% = ([all count]-[blank count])/[all count] Measure = IF(ISINSCOPE('Table copy'[Index]),MAX('Table copy'[Value]),FORMAT([no blank%],"0.00%"))
Hi @Anonymous
If the columns are not too many, you could create measures to show each columns' blank row rate.
Create measures
Measure_country = VAR val = ( CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ) - CALCULATE ( COUNTBLANK ( 'Table'[County] ), ALL ( 'Table' ) ) ) / CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ) RETURN IF ( ISINSCOPE ( 'Table'[Index] ), MAX ( 'Table'[County] ), FORMAT ( val, "0.00%" ) ) Measure_number = VAR val = ( CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ) - CALCULATE ( COUNTBLANK ( 'Table'[Transmission number] ), ALL ( 'Table' ) ) ) / CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ) RETURN IF ( ISINSCOPE ( 'Table'[Index] ), MAX ( 'Table'[Transmission number] ), FORMAT ( val, "0.00%" ) )
Hi @Anonymous
It is not clear for me.
click on the total % blanks at the bottom and get them to filter on those rows?
something that can be easily copied to other columns?
The screenshot?
Could you clear me so to find a solution for you?
Hi Maggie,
I want to be able to drillthrough to underlying table data to see the blank cells.
The screenshot is hwat we expect to see but I dont get that at all,
I just get a table with no sums,
and I want to sum all the blanks in the column and get the % of the cells blank vs cells filled.
Is that more clear?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
88 | |
77 | |
58 | |
45 | |
38 |
User | Count |
---|---|
115 | |
81 | |
81 | |
52 | |
39 |