Forum Discussion
Collins26390
2 years agoFrequent Visitor
Days Since Measure on Map Visualisation
Hello, I have created a Power BI report to log the frequency and location of visits carried out by the gas engineers I work with. I have added a map visualisation to help illustrate this and...
amitchandak
2 years agoSuper User
Collins26390 , to me it seem like a column not meausre .
Create a column in the table RealTimeData
Days Since Last Visit = DATEDIFF('RealTimeData'[Date of Last Visit],TODAY(),DAY)
or measure
Days Since Last Visit =
Averagex( 'RealTimeData', DATEDIFF('RealTimeData'[Date of Last Visit],TODAY(),DAY)
or
Days Since Last Visit =
Sumx( 'RealTimeData', DATEDIFF('RealTimeData'[Date of Last Visit],TODAY(),DAY)