Forum Discussion
AJP
8 years agoAdvocate I
Annotation using a FactEvent Table? Is this Possible?
Hi All, I am looking to annotate a line graph - I have been able to do this using the EVENT & NOTE Dax as detailed in a number of posts, however this doesn't quite give me the functionality that ...
- 8 years ago
Hi Annie,
If you have an Event table, you can establish relationship with the DimDate. Then add it to the Tooltip. Please check out the demo here.
The measures could be:
Note = SWITCH ( MIN ( 'DimDate'[Date] ), MIN ( 'DimDate'[Date] ), MIN ( 'Event'[Event] ), BLANK () )Event = IF ( LEN ( [Note] ) > 0, SUM ( FactEvent[Value] ), BLANK () )

Best Regards,
Dale
Anonymous
7 years agoNot applicable
Dale,
I have a matrix visual on my page, that I am using to filter my line chart. If I click on an item name, the line chart shows filters to the revenue for that item only. I want the chart to also filter to only show the event and note for that item as well. How would you adjust the Note or Event measures to work for this? ic item through the matrix?
Anonymous
6 years agoNot applicable
Did you solve this problem?