Boolean IIF Statement
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I was looking through some of the different content on the site, and I found the lesson on Boolean IIF statements. HOWEVER, the example looked incorrect when I ran it (and in the example):
IIF([Day] != 'Sat' OR [Day] != 'Sun', 'Weekday', 'Weekend')
2016-08-01 Mon Weekday
2016-02-22 Mon Weekday
2016-03-12 Sat Weekday
2016-04-10 Sun Weekday
2016-05-06 Fri Weekday
2016-07-04 Mon Weekday
2016-06-05 Sun Weekday
I'm trying to understand where it is going wrong. If I remove the ! leaving just the = and switch the words weekday and weekend around, the statement works. Why is it not working when the ! is present? It seems like it is written correctly.
Thanks! This is driving me crazy.
Solved! Go to Solution.
- Labels:
- Common Use Cases
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @tpostlewate, try using AND instead of OR.
Right now your expression says if the day isn't Saturday, then call it a weekday. This will apply to Mon, Tues, Weds, Thurs, Fri, and Sun. Then, the only row remaining is Sat, so Alteryx will apply the second argument (!="Sun"), evaluate it as true for Saturday, so it will call it a weekday. Your expression isn't considering !=Sat and !=Sun together, which is why you'll have to use AND.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you! That worked.
