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 September 15. Request your voucher.
Hi All,
My DAX (creating a column):
Email Not Sent Flag = IF(
'Time Entries'[Entry Contains Document Flag] = 0 & 'Time Entries'[Entry Starts With Greeting Flag] = 1
|| 'Time Entries'[Entry Starts With Greeting Flag] = 1 & 'Time Entries'[Email File Extension Flag] = 0 & 'Time Entries'[Entry Contains Document Flag] = 1 ,1,0)
Solved! Go to Solution.
&& in place of
Email Not Sent Flag = IF(
'Time Entries'[Entry Contains Document Flag] = 0 && 'Time Entries'[Entry Starts With Greeting Flag] = 1
|| 'Time Entries'[Entry Starts With Greeting Flag] = 1 && 'Time Entries'[Email File Extension Flag] = 0 &&
'Time Entries'[Entry Contains Document Flag] = 1 ,1,0)
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin
&& in place of
Email Not Sent Flag = IF(
'Time Entries'[Entry Contains Document Flag] = 0 && 'Time Entries'[Entry Starts With Greeting Flag] = 1
|| 'Time Entries'[Entry Starts With Greeting Flag] = 1 && 'Time Entries'[Email File Extension Flag] = 0 &&
'Time Entries'[Entry Contains Document Flag] = 1 ,1,0)
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin
Thank you 🙂
+1
Stupid error on my behalf lol