Forum Discussion

ovetteabejuela's avatar
ovetteabejuela
Impactful Individual
8 years ago
Solved

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...
  • MarcelBeug's avatar
    8 years ago

    If Date1 > Date2:

     

    12*(Date.Year([Date1])-Date.Year([Date2]))+Date.Month([Date1])-Date.Month([Date2]))