Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a table name called Local sheet . this table have three column Item,itemcode,
Item Itemcode weigh[g]
Shipping case FW002306.01 45
Square TIN BODY FW002306.01 54
Tin Lid FW002306.01 67
Tin Tape FW002306.01 89
Membrane TOP FW002306.01
Shipping case FW002306.51 85
Square TIN BODY FW002306.51 34
Tin Lid FW002306.51 77
Tin Tape FW002306.51 89
Membrane TOP FW002306.51 34
I am creating new column if any weigh[g] column have a null value based Item column it will alert show WARNING or else AVAILABLE .
Itemcode Alert
FW002306.01 WARNING --- becaseue for this itemcode Membrane TOP item have blank so it will be warning.
FW002306.51 AVAILABLE -- becaseue for this itemcode all the row have a weigh[g] value.
i am trying the below measure but it is not working
looking for support .. thanks in advance ..
Solved! Go to Solution.
Hi,
I assume you want to create a new column in the table.
Please check the below picture and the attached pbix file.
New Column CC =
VAR _weightblankcount =
COUNTROWS (
FILTER (
'Local sheet',
'Local sheet'[Itemcode] = EARLIER ( 'Local sheet'[Itemcode] )
&& 'Local sheet'[weigh[g]]] = BLANK ()
)
)
RETURN
IF ( _weightblankcount >= 1, "Warning", "Available" )
Hi,
I assume you want to create a new column in the table.
Please check the below picture and the attached pbix file.
New Column CC =
VAR _weightblankcount =
COUNTROWS (
FILTER (
'Local sheet',
'Local sheet'[Itemcode] = EARLIER ( 'Local sheet'[Itemcode] )
&& 'Local sheet'[weigh[g]]] = BLANK ()
)
)
RETURN
IF ( _weightblankcount >= 1, "Warning", "Available" )