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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

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
v-yiruan-msft
Community Support
Community Support

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

Community Support Team _ Rena
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

3 REPLIES 3
Anonymous
Not applicable

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

v-yiruan-msft
Community Support
Community Support

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

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.