Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to write a dax meaure or column(not sure of the best) to determine if "Sample count" is blank, or S'ize Value' is blank, or both 'Size value' and "Sample Count" is blank, their rows should return incomplete.
Atttached is a sample of my data. Thanks.
Solved! Go to Solution.
Hi @Anonymous
You can create new column
Column =
IF ( ISBLANK ( TableName[Sample Cont] ) || ISBLANK ( TableName[Size Value] ), "Incomplete" )
Thank you!
Hi @Anonymous
You can create new column
Column =
IF ( ISBLANK ( TableName[Sample Cont] ) || ISBLANK ( TableName[Size Value] ), "Incomplete" )
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |