Forum Discussion
ovetteabejuela
8 years agoImpactful Individual
PowerQuery : Elapsed Months
Hi, I think I'm close but I'm lagging... How do you calculate elpased months using PowerQuery? It can't just merely be extracting the month part of the date. The formula should be able to cat...
- 8 years ago
If Date1 > Date2:
12*(Date.Year([Date1])-Date.Year([Date2]))+Date.Month([Date1])-Date.Month([Date2]))
MarcelBeug
8 years agoCommunity Champion
If Date1 > Date2:
12*(Date.Year([Date1])-Date.Year([Date2]))+Date.Month([Date1])-Date.Month([Date2]))
ovetteabejuela
8 years agoImpactful Individual
Yes, that worked! thanks.