Forum Discussion
Anonymous
3 years agoNot applicable
DAX Issue on Product Recertification
Hello, I have an issue. I want to show KRI like this one: I have one table with column: Product and Yearly Review: Product Name Yearly review Product 1 Thursday, 24 November 202...
Greg_Deckler
3 years agoCommunity Champion
Anonymous Maybe:
Green =
VAR _table =
SUMMARIZE ( 'Table', 'Table'[Product_Name], 'Table'[Max Date] )
VAR _filter =
FILTER (
_table,
[Max Date] > EOMONTH(TODAY(),-6)
)
RETURN
COUNTROWS ( _filter )