Oct 15 2023 09:14 PM
I am having trouble with this step in using IFERROR. How to Nest an IFERROR function with the formula. Select cell E6 on the Accounts Aging sheet and review the formula. The formula subtracts the invoice date from today’s date in cell G1. Nest an IFERROR formula to display Check date. instead of a standard error message. Copy the IFERROR formula to cells E7:E20.
I am trying, but it still isnt coming our correctly. Help anyone?
Oct 16 2023 03:50 AM
Let's say that E6 currently contains the formula
=D6-$G$1
Change it to
=IFERROR(D6-$G$1, "Check date")
Oct 16 2023 06:49 PM