Return date if calendar equals "eg/ig"

steve89

Board Regular
Joined
Oct 4, 2015
Messages
152
hi trying to find a formula for my leave tracker which has a calendar and is as follows:

C11:AG11 = Days in the months by the number format
B12:B23 = months in the year: Example: "january"
C12:AG23 = infractions or paid time off we enter
but i want the formula to look for "EG/IG" and if so return the date that it occured

also would like a separate formula to sat if "EG/NI" was giving then text should equal "no" and if EG/IG" was giving text should say yes.
EG stands for evaluation giving
IG stands for increase giving
NI stands for no increase giving

thanks everyone hope to get some help

=IFERROR(IF(BK27<>0,IF(BK29>=BK29,"YES","NO")&TEXT(BK29/BK27,),"NO"),"YES")
this is what i have now if the formula see "EG/IG" it reads as yes but dont know how to incorporate "EG/NI" as no.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
revised i found an answer but still have a question formula works
=IF(C13="eg/ig",TODAY()) -- this returns the date this occured but i need the formula to check c13:ag23
 
Upvote 0
If you are saying that you simply want the formula to check to see if "eg/ig" exists anywhere in C13:AG13, then try this:
Code:
=IF(COUNTIF(C13:AG13,"eg/ig")>0,TODAY(),"")
 
Upvote 0
I think we need to see some sample data and your expected output.
 
Upvote 0
all the formula needs to know is if "eg/ig" occurs on the calendar that i have set which is cell C12:AG23 then tell me which date it occurred. C11:AG11 = Days in the months by the number format
B12:B23 = months in the year: Example: "january"
 
Upvote 0
So, are you saying it should find the "eg/ig" value in row 13, and then return the value from rows 11 and 12 of that SAME column?
If so, will "eg/ig" only appear once in row 13?
Can it ever appear more than once or not at all?
What should happen in those instances?
 
Upvote 0
it can only appear once between cells C12:AG23 - which is the calendar. it can appear in any row between those ranges but only once. when it does appear please tell me the date that it occurred.
 
Upvote 0
when it does appear please tell me the date that it occurred.
That is what I am trying to clarify here. Please tell us exactly how to get/determine that date.
To modify the question I asked in my previous post:
So, are you saying it should find the "eg/ig" value in rows 13:23, and then return the value from rows 11 and 12 of that SAME column?
For example, if the value is found in cell Z15, and you saying that we should then return the value from Z11 and Z12 for the date?
If not, you need to explain to us that once we find the "eg/ig" value in a particular cell, how we get/determine this date?
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top