Forum Discussion
Chris Kelly
Jan 23, 2018Copper Contributor
Need help with formula
Hi everyone,
I have set up a spreadsheet for myself at work. In it I am keeping a track of accounts.
One of the things I would like to do i have the form advise me of a due date on the accounts....
Jan 23, 2018
Hello,
there are several different ways to handle this and the approach will depend on your preference. A pop up can only be done with VBA, are you comfortable with that?
A more low key solution could be a formula at the top of the worksheet, something like
=IF(COUNTIF(A:A,TODAY())>1,"There are several accounts due today",IF(COUNTIF(A:A,TODAY())=1,"Account "&INDEX(B:B,MATCH(TODAY(),A:A,0))&" is due today",""))
It would be easier to advise a formula or technique if you shared a sample file.