Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello all! i am trying to check if columns B contains "Virus" or "Malware" and returns True or false for every device.. i am just trying to run through a list of computers to see which one is missing Antivirus.
hoping to get the results like
DeviceID | AV Check |
1 | TRUE |
2 | FALSE |
3 | TRUE |
Solved! Go to Solution.
Hi ,
Please try the below measures
AVCheck Measure = CALCULATE(COUNTROWS(Device),SEARCH("Virus",Device[Installed],1,FALSE()) || SEARCH("Malware",Device[Installed],1,FALSE()) )
AvCheck = if(ISBLANK(Device[AVCheck Measure]),"FALSE","TRUE")
Hi
You can add the conditional columns in Query editor as shown below and then you can filter as you needed.
Kindly note that the filter values are case sensitive.
Hi
You can add the conditional columns in Query editor as shown below and then you can filter as you needed.
Kindly note that the filter values are case sensitive.
Hi ,
Please try the below measures
AVCheck Measure = CALCULATE(COUNTROWS(Device),SEARCH("Virus",Device[Installed],1,FALSE()) || SEARCH("Malware",Device[Installed],1,FALSE()) )
AvCheck = if(ISBLANK(Device[AVCheck Measure]),"FALSE","TRUE")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
95 | |
69 | |
44 | |
38 | |
30 |
User | Count |
---|---|
157 | |
101 | |
60 | |
42 | |
40 |