I am trying to create a category of time clocks using the info in a comments section. The Comments are as follows:
IT31 Bio (suprema)
DeviceID: US2509-1
AssistIT: IWA70
MAC: 0001ce0199ea
IP:DHCP
Timezone: ET
Netinstall ID: 200735
Netinstall PIN: 2735
Punch Scheme: IN, OUT, INL, CBI
---
I'm hoping for these results (essentially, either the time clock is Biometric or standard and then is either WiFi or Ethernet but the formula below is not working. I've tried various versions, including the AND statement up front, etc.
If the comments contain "Bio" and "Wifi" then "NXG G2+ Biometric Wi-Fi" else
If the comments contain "Bio" but do not include "Wifi" then "NXG G2+ Biometric Ethernet" else
If the comments do not contain "Bio" but do include "Wifi" then "NXG G2+ Wi-Fi" else "NXG G2+ Ethernet"
=IF(AND(CONTAINS("Bio", Comments@row), CONTAINS("Wifi", Comments@row)), "NXG G2+ Biometric Wi-Fi", IF(CONTAINS("Bio", Comments@row), (AND(NOT(CONTAINS("Wifi", Comments@row))), "NXG G2+ Biometric Ethernet", IF(NOT(CONTAINS("Bio", Comments@row), AND(CONTAINS "Wifi", Comments@row), "NXG G2+ Wi-Fi", "NXG G2+ Ethernet"))).
Please help.