Forum Discussion
Dfuhrman8
May 02, 2022Copper Contributor
Excel Formula Help with Calculating Dates
I have a column in a work sheet that has a Subscription Start Date, depending on that date depends on what is billed. Here is what I am wanting, I have tried different ways of writing this out and I...
- May 02, 2022
=B1*IF(YEAR(A1)<YEAR(TODAY()),1,IF(A1>=DATE(YEAR(TODAY()),7,1),0,(7-MONTH(A1)))/12)
or, equivalently
=B1*IF(A1<DATE(YEAR(TODAY()),1,1),1,IF(A1<DATE(YEAR(TODAY()),7,1),(7-MONTH(A1))/12,0))
Dfuhrman8
May 09, 2022Copper Contributor
That worked for Jan Billing Column, So would July Billing (7/1-12/31) look like this:
=B1*IF(Year(A1)<Year(TODAY()),1)/12), if(A1>Date(Year(Today())),8,1)/12),0,(13-Month(A1))))/12)
=B1*IF(Year(A1)<Year(TODAY()),1)/12), if(A1>Date(Year(Today())),8,1)/12),0,(13-Month(A1))))/12)
HansVogelaar
May 09, 2022MVP
Please explain the rules for July billing in detail.