today function

BORUCH

Well-known Member
Joined
Mar 1, 2016
Messages
548
Office Version
  1. 365
Platform
  1. Windows
can someone guide me regarding power pivot automatic calculation vs manual recalculation, i currently have this calculated column, called "days overdue" in my power pivot table .

=IF(TODAY()-ARTABLE[AR DATE]<=30,"0-30 DAYS",IF(TODAY()-ARTABLE[AR DATE]<=45,"31-45 DAYS",IF(TODAY()-ARTABLE[AR DATE]<=60,"45-60 DAYS",IF(TODAY()-ARTABLE[AR DATE]<=90,"60-90 DAYS","OVER 90 DAYS"))))

but i realize that it doesn't update every day to the current date, only if i switch back to manual calculation mode ,and then click recalculate now, then it will update.

Even if i slice the column "days overdue" to lets say "31-45" it wouldn't recalculate how can i fix that ?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
You should be able to replace that formula with the somewhat shorter

=LOOKUP(TODAY()-ARTABLE[AR_DATE],{0,30,45,60,90},{"LESS THAN 30","31-45","46-60","61-90","OVER 90"})&" DAYS"
 
Last edited:
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,728
Members
453,368
Latest member
positivemind

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top