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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Paulyeo11
Impactful Individual
Impactful Individual

How to replace NULL with Missing Valu

Hi All

 

i Need to fill those NULL BRAND with Missing Value. I try below script  , it does not work :-

 
BRAND_8 = if ( isblank( 'Incidents' 'TABLE'[BRAND]), "Unspecifed" , 'Incidents' 'TABLE'[BRAND])

 

 
 
 
 
 
 
 
 
 
 

The syntax for ''TABLE'' is incorrect. (DAX(if ( isblank( 'Incidents' 'TABLE'[BRAND]), "Unspecifed" , 'Incidents' 'TABLE'[BRAND]))).

 

 

 

Paulyeo11_0-1604217351439.png

 

1 ACCEPTED SOLUTION

@Paulyeo11 

So your table name is TABLE,
Try:

New Column  = IF ( 'TABLE' [BRAND] = Blank(), "Missing Value", 'TABLE' [BRAND])

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

4 REPLIES 4
Fowmy
Super User
Super User

@Paulyeo11 

what is your table name? 'Incidents' 'TABLE'[BRAND] is incorrect.

Do you need to add a new column where if the brand name is blank and insert"Missing Value?

Try like:
New Column  = IF ( 'Incidents' [BRAND] = Blank(), "Missing Value", 'Incidents' [BRAND])

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Paulyeo11
Impactful Individual
Impactful Individual

Hi Sir

I still get error :-

Paulyeo11_0-1604219751695.png

 

@Paulyeo11 

So your table name is TABLE,
Try:

New Column  = IF ( 'TABLE' [BRAND] = Blank(), "Missing Value", 'TABLE' [BRAND])

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Paulyeo11
Impactful Individual
Impactful Individual

Thannk you sir , it work fine now. 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.