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 have a table Merge1.
Two columns im looking at: compliance_status and S1 Installed
I need to have a calulated column that if compliance_status has the value Action Needed and S1 Installed has Not Installed then it will say Not compliant if else Compliant.
Struggling here
@chrisdavila , You can create a new column
power query
if [compliance_status] = "Action Needed" and [S1 Installed] = "Not Installed" then "Not compliant" else "Compliant"
dax
if ([compliance_status] = "Action Needed" && [S1 Installed] = "Not Installed" ,"Not compliant" ,"Compliant")
for some reason it is still not acting as needed. maybe because it is merged table - should i mention the table name or?
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
20 | |
15 | |
14 | |
10 | |
7 |