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.
Hi Experts
Is it possible to have two option in the following DAX
if the Cell is blank then then below, else if the Cell Has TBC then TBC. Is this possible.
5.2 Blanks =
VAR Avalue = AVERAGE([5.2])
RETURN
IF(ISBLANK(Avalue),"N/A",Avalue)
Solved! Go to Solution.
Not sure what your question is.
You can also use COALESCE
5.2 Blanks = COALESCE(AVERAGE([5.2]),"N/A")
Not sure what your question is.
You can also use COALESCE
5.2 Blanks = COALESCE(AVERAGE([5.2]),"N/A")
User | Count |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
104 | |
93 | |
52 | |
50 | |
46 |