IF formula combo error
3 TopicsComplex IF Statement - Excel
I'm trying to build a calculator for my team to calculate benefit insurance effective dates based on an employees hire date. The 2 options are "First of month after waiting pd." or "First of month coinciding with or after waiting pd." I have the formula to calculate first of month after but I can't figure out how to do "coinciding with". The IF statement I wrote is =IF(E9=DATE(YEAR(E9),MONTH(E9),1),=E9,=Date(year(E9),Month(E9)+1,1)) If I keep the quotation marks in: =IF(E9=DATE(YEAR(E9),MONTH(E9),1),"=E9","=Date(year(E9),Month(E9)+1,1)") it returns the text string without a problem but I need it to return the actual result of the formula instead of just the text. If true (if the date in E9 is the first of the month), I need it to return the value of cell E9. If false(if it's not the 1st of the month, I need it to return the date as first of the following month. Any advice?2KViews0likes2CommentsIFNA nested
im sure this is a simple fix and i have read other articles that say to put iferror/ifna/isna at the beginning of the formula but i still can't seem to get it to work. The two formulas are the ones in column "AK"; =IF(AJ3<AH3,AJ3,IF(AND(AM3>=49,AH3<=44.99),AH3,IF(AND(AM3>=39,AH3<=32.99),AH3,IF(AND(AM3>=29,AH3<=24.99,AH3),AH3,IF(AND(AM3>=19,AH3<=16.99),AH3,IF(AND(AM3>=14,AH3<=9.99),AH3,"NO CHANGE")))))) (makes sure the price does not go over our max used price or our competitors) and "AM"; =IF(AND(AI3>AL3,AI3>49.99),49.99,IF(AND(ISNUMBER(AI3),AI3<>AL3),AI3,AL3)) (determines if the new/acquisition price has changed from our supplier.) just a basic rundown of what i'm trying to accomplish with these two formulas is determine the new and used price based off several factors and they are currently working appropriately EXCEPT for the fact i can not get it to ignore #n/a. examples fields would be; "AK8" should result in 44.99 (AH8) "AK23" should result 22.99 (AH23) "AM19" should result 19.99 (AL19) "AM23" should result 29.99 (AL23) attached is the sheet i'm working with so you can get a better visual. remember all other values are correct so if any of the values change besides the "#N/A" then i can not use that formula.Solved23KViews0likes3CommentsIF Statement with Networkdays
i have a spreadsheet that has dates for a time frame and it has a "amount of days" that it has to be completed in while deducting for weekends and holidays. Here is the formula i am using: =IF(H4="","",NETWORKDAYS(H4,20,W4:AP4)) Formula resides in cell: I4 "H4" is the date "20" is the time it needs to be finished by "W4:AP4" is where the holidays are stored Am I doing something wrong??Solved26KViews0likes4Comments