Forum Discussion

walterdp's avatar
walterdp
Icon for Helper I rankHelper I
3 years ago
Solved

I need to extract absolute Firstdate and Lastdate for calculating average

Hi all:   I have a table a couple of columns with dates and other data. I need to calculate the average number of deployments per day, considering the complete time period between the oldest date a...
  • adudani's avatar
    3 years ago

    Hi walterdp,

     

    Wrap try the following measure:

    Min Date in Table=CALCULATE(MIN(Table[Column]),All())
    Max Date in Table =CALCULATE(MIN(Table[Column]),All())

    Please accept this solution if it resolves the query.