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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Gaël
Advocate II
Advocate II

How to define the value of a cell to NULL in a "IF" sentence?

Hi!

 

I'm trying to define a cell to NULL in an IF sentence:

 

Column = IF(AND('public _view_powerbi__alm_x_periodo'[AFI]>='public _view_powerbi__alm_x_periodo'[PFI];'public _view_powerbi__alm_x_periodo'[AFI]<='public _view_powerbi__alm_x_periodo'[PFF]);'public _view_powerbi__alm_x_periodo'[id_alumno$];NULL)

 

The system replies : Operator or expression 'NULL' is not admited in this context.

 

If I set the value of cell to 0 (for exemple), a problem will appear when I will do a DISTINCTCOUNT for this column counting the 0 and the final information is wrong.

 

How can I do for or set cell to NULL or do not count the 0 value in a DISTINCTCOUNT?

 

I'm directly connected to the Data Base (Postgresql).

 

Thank you very much for your help.

 

 

 

Edited: I've created a new column where Vacio =  and I modified the original sentence to

 

column = IF(AND('public _view_powerbi__alm_x_periodo'[AFI]>='public _view_powerbi__alm_x_periodo'[PFI];'public _view_powerbi__alm_x_periodo'[AFI]<='public _view_powerbi__alm_x_periodo'[PFF]);'public _view_powerbi__alm_x_periodo'[id_alumno$];'public _view_powerbi__alm_x_periodo'[Vacio])

 

but the problem with DISTINCTCOUNT stills the same... It counts the empty cells...

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

calculate(distinctcount((your column name here) ) , (your column name here) <> 0)

 

I'm assuming the column has only numerical values. If not then replace the 0 with '' or "" 

 

 

 

View solution in original post

7 REPLIES 7
Mr_Niels
Regular Visitor

Hi Gaël,

 

what works well for me to count distinctvalues is to create a measure with this formula (not my find originally, but I don't know the source anymore):

 

Calculate(DistinctCount(tablename[columnname]);Filter(tablename;Not(isblank(tablename[columnname]))))

 

I'm quite new to Power BI, but I think you can assign a Null value by using just lowercase letters (null rather than Null or NULL)

 

cheers,

Niels

Anonymous
Not applicable

That only applies to the query editor. There are two languages in Power BI. In a query you can return null by typing null in lowercase. In a DAX formula use BLANK().

This is the only answer to the question that was asked and should be the accepted response. The others may have solved OP's issue, but they did not answer the question. 

 

IF ( x = 7 , 7 , BLANK() )

Thank you!!! DAX is really messing with me.
Short version of how I'm transposing my DW data with your input.

 

ex:

IF( 'value_label'="Federal Tax(s)", value('value_amount'), blank()

I know this is old, but I just tested to remove the comma and values for the "if false" portion of the formula.

 

So instead of typing ", blank() )", just clost the expression BEFORE the value if false with the close parentheses ")".

Anonymous
Not applicable

calculate(distinctcount((your column name here) ) , (your column name here) <> 0)

 

I'm assuming the column has only numerical values. If not then replace the 0 with '' or "" 

 

 

 

Thanks a lot danielhjorvar, it works perfectly

 

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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