Forum Discussion
datawizsmh
May 06, 2021Copper Contributor
date populate based on what the user enters
Hello, I am trying to have the date populate based on what the user enters (see below). I used the formula =IF(ROW(A1)>=$B$2,"",DAYS($A$4,ROW(A1))) but as you can see it includes dates past 4/13, and...
- May 06, 2021
If you are on Excel 365 that could be
=SEQUENCE(B1-D1+1,1,B1,-1)If not
=IF(ROW()-ROW($B$2)>$B$1-$D$1+1,"",$B$1-ROW()+ROW($B$2)+1)could work. Please check in attached.
SergeiBaklan
May 06, 2021Diamond Contributor
If you are on Excel 365 that could be
=SEQUENCE(B1-D1+1,1,B1,-1)
If not
=IF(ROW()-ROW($B$2)>$B$1-$D$1+1,"",$B$1-ROW()+ROW($B$2)+1)
could work. Please check in attached.
datawizsmh
May 06, 2021Copper Contributor
Thank you! The second one works!
- SergeiBaklanMay 06, 2021Diamond Contributor
datawizsmh , you are welcome