help with range lookup and date criteria

J

James Spalding

Hello, I have a list of doctors (column A) that are each on-cal
through a number of days. My argument is: if the date value of B1 an
C1 is within the current date, then repeat the value of A1
 
H

Héctor Miguel

hi, James !
... a list of doctors (column A) that are each on-call through a number of days.
... argument is: if the date value of B1 and C1 is within the current date, then repeat the value of A1.

assumming 'B1' is a 'valid' date_data [the date when you called 'the doctor' ?]
and 'C1' are n_days 'after' [he asked you to call-back on ?]
op1: consider a conditional format to 'A1' ?... formula: =(b1+c1)=today()
op2: you want to repeat the doctor's name [a1]... =if((b1+c1)=today(),a1,"")
op3: too many cells with conditional-if functions ?... =choose(1+((b1+c1)=today()),"",a1)

hth,
hector.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top