The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
5 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |