Forum Discussion
IFS function not working
In general shall work
Perhaps some other reason. If you attach sample file we may check if it works on other platform.
IFS does not work in my Excel 2016 even though the help page says it does. It is not listed in the functions.
- SergeiBaklanJul 26, 2019Diamond Contributor
Support page https://support.office.com/en-us/article/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45 says it's for Office 365 subscribers
- WipsupervisorOct 15, 2020Copper ContributorHi sir,
can you help me with this ifs formula error,
=ifs(BG8>"7:00","LT",BG8>"19:00","LT",BG8<"7:00","P",BG8>"19:00","P")- SergeiBaklanOct 15, 2020Diamond Contributor
That could be
=IFS( (BG8>7/24)*(BG8<19/24),"LT",TRUE,"P") or =IF( (BG8>=7/24)*(BG8<=19/24),"LT","P")In Excel datetime is actually the number their date is integer part and time is decimal one. In days calculation one day is equal to 1, thus one hour is 1/24.
- WipsupervisorOct 15, 2020Copper Contributor
Hi Sir,
can you help me with this ifs error
=ifs(BG8>"7:00","LT",BG8>"19:00","LT",BG8<"7:00","P",BG8>"19:00","P")
#NAME? 01-Oct 02-Oct 03-Oct Restday Thursday Friday Saturday Monday 6:14 6:12 6:39 Thanks
- ApolloJFKJul 26, 2019Copper Contributor
Thank you SergeiBaklan . I just installed the Office 365 version and now it works.
- SergeiBaklanJul 27, 2019Diamond Contributor
ApolloJFK , okay, good to know