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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

DAX SYNTAX IN POWER BI PAGINATED REPORTS

In my Paginated Report I want to hide a row when a field is blank.  This is what I've tried so far but 

there is an error each time.

 

=Fields!ORD_ERR_ESO.Value = " "
=Fields!ORD_ERR_ESO.Valu = (" ")
=Fields!ORD_ERR_ESO.Value = [" "]
=Fields!ORD_ERR_ESO.Value = SPACE()
=Fields!ORD_ERR_ESO.Value = BLANK()
= IF( ISBLANK('ORD_ERR_ESO')

 

2022-03-14 12-50-14_Start.jpg2022-03-14 12-51-14_Start.jpg2022-03-14 12-51-37_Start.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please update the expression of Textbox2 as below:

=Fields!ORD_ERR_ESO.Value Is Nothing

or 

=IsNothing(Fields!ORD_ERR_ESO.Value)

You can get more details about the expression examples in the following official documentation.

Expression examples in Power BI Report Builder

=IIF(IsNothing(Fields!LargePhoto.Value),True,False)
=IIF(Fields!PhoneNumber.Value Is Nothing,"No Value",Fields!PhoneNumber.Value)

Best Regards

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thank You to all who responded to my question.  I agree with the solution.

Anonymous
Not applicable

Hi @Anonymous ,

Please update the expression of Textbox2 as below:

=Fields!ORD_ERR_ESO.Value Is Nothing

or 

=IsNothing(Fields!ORD_ERR_ESO.Value)

You can get more details about the expression examples in the following official documentation.

Expression examples in Power BI Report Builder

=IIF(IsNothing(Fields!LargePhoto.Value),True,False)
=IIF(Fields!PhoneNumber.Value Is Nothing,"No Value",Fields!PhoneNumber.Value)

Best Regards

amitchandak
Super User
Super User

@Anonymous , refer this, I think there isnothing function

 

https://www.youtube.com/watch?v=w-LVgLexeEA

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.