March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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" )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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" )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
16 | |
16 | |
12 |