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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors