Forum Discussion

sd0021781's avatar
sd0021781
Regular Visitor
1 year ago
Solved

Net Login calculation

Hi,   Need help   I have net login without aux in my excel file >> when i am using it after uploading in Power BI, It is not allowing me to calculate average, both the screenshot are attached for...
  • sd0021781's avatar
    1 year ago

    Thanks,

     

    I got my answer with below mentioned syntax

     

    Average Time W/O Aux = VAR FilteredTable =     FILTER(         'One View Noida',         'One View Noida'[Net Login without Aux] <> TIME(0, 0, 0)     ) VAR AvgTime =     AVERAGEX(         FilteredTable,         'One View Noida'[Net Login without Aux]    ) RETURN     FORMAT(AvgTime, "HH:MM:SS")
     
    Thanks