Forum Discussion
ryand009
3 years agoFrequent Visitor
Dax Outer Join
Hello I’m building a PBI report to look at SSRS report usage. I need a measure that returns the usage of reports created in the last six months. Two tables used in the measure Catalog table -...
Greg_Deckler
Community Champion
3 years agoryand009 Maybe:
EVALUATE
ROW (
"b",
CALCULATE (
COUNTROWS ( ExecutionLogStorage ),
'Catalog'[CreationDate]
>= DATE ( YEAR ( NOW () ), MONTH ( NOW () ) - 6, DAY ( NOW () ) )
) + 0
)