The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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 |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |