Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Thang_Doan
Regular Visitor

Hide blank row in the Account Trial Balance

I got a problem to hide the blank child account on the accountrial balance.

Could I get help to solve this? 

Capture.JPG

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Thang_Doan 

 

I'd like to check with you if you want to hide the entire rows where the blank exists, or just the blank value.

If you want to hide the entire rows where the blank exists, you can uncheck “(Blank)” in the filters for this visual. 1.png

 

If you just want to hide the “(Blank)” value, you can create calculated columns using “IF” or “SUBSTITUTE” DAX  as the following:

Column = SUBSTITUTE('Table'[level2], "(Blank)", "")

Column = IF('Table'[level2] = "(Blank)", "", 'Table'[level2])

In addition, you can also use “Replace Values” in Power Query to replace “(Blank)” value with “” or other text values. 2.png

 

 

 

Best Regards,

Jarvis Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Thang_Doan 

 

I'd like to check with you if you want to hide the entire rows where the blank exists, or just the blank value.

If you want to hide the entire rows where the blank exists, you can uncheck “(Blank)” in the filters for this visual. 1.png

 

If you just want to hide the “(Blank)” value, you can create calculated columns using “IF” or “SUBSTITUTE” DAX  as the following:

Column = SUBSTITUTE('Table'[level2], "(Blank)", "")

Column = IF('Table'[level2] = "(Blank)", "", 'Table'[level2])

In addition, you can also use “Replace Values” in Power Query to replace “(Blank)” value with “” or other text values. 2.png

 

 

 

Best Regards,

Jarvis Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.