Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
AJP
Advocate I
Advocate 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 I need. 

 

EVENT = IF(LEN([NOTE]),[TOTAL METRIC],BLANK())

 

Note = SWITCH(
max(DimDate[Date]),
VALUE("01/01/2017"),"PUT TEXT HERE",
BLANK()
)

 

 

 

The NOTE is hardcoded to text events. 

 

Am I able to use a FactEvent table to link to the data and make the notes dynamic and appear in the graph on the specific date? This is much easier to maintain plus we have a lot of events! 

 

Any help much appreciated. 

Thanks


Annie

 

 

 

1 ACCEPTED SOLUTION

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 () )

nnotation_using_a_Fact_Event_Table

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

9 REPLIES 9
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @AJP,

 

Could you please provide more details? Please share a dummy sample. I can't see any connection between EVENT and Note. Do you want to put them as tips in a visual?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Dale, 

 

Thank you for replying. I have tried to add a screenshot but I can't do it - Sorry!

The note looks at the date table and line graph and then pulls back any associated text for that date. 

So in my line graph on the 1st Jan 2017 there is a note along side the value in the hover-over tool tip that states EVENT 1. You can change the line marker to highlight that an event took place on that date.

(I followed this - https://community.powerbi.com/t5/Webinars-and-Video-Gallery/Annotating-Specific-Events-in-Line-Chart...)

 

Note = SWITCH(
max(DimDate[Date]),
VALUE("01/01/2017"),"EVENT 1",
BLANK()
)

 

The Event basicially sees if there is a note (LEN bigger than 0) and brings back the note text which sits in the tool tip. 

 

My issue is I want to record a number of events so using the note DAX i would have to do the following all hard coded

 

Note = SWITCH(
max(DimDate[Date]),
VALUE("01/01/2017"),"",

VALUE("02/01/2017"),"EVENT 2",

VALUE("03/01/2017"),"EVENT 3",

VALUE("04/01/2017"),"EVENT 4",

VALUE("05/01/2017"),"EVENT 5",

BLANK()
)

 

Do you know if it is possible to replace the VALUE("01/01/2017"),"EVENT 1", with an event table like below

 

Date                                  Event

01/01/2017                     EVENT 1

02/01/2017                     EVENT 2

03/01/2017                     EVENT 3

04/01/2017                     EVENT 4

05/01/2017                     EVENT 5

 

So essentially a reference table rather than hard coded text?

I am not very good at explaining things technically, but i hope this makes it a little clearer

 

Thanks

 

Annie

 

 

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 () )

nnotation_using_a_Fact_Event_Table

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello,

 

Would you be able to upload the sample file again please.

 

This is a really useful topic, but sadly the file has been removed.

 

Thanks

Anonymous
Not 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? event.PNGic item through the matrix? 

Anonymous
Not applicable

Did you solve this problem?

Hi @Anonymous,

 

I would suggest you create a new post in this forum.

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Dale - that works perfectly! Thank you! 🙂

AJP
Advocate I
Advocate I

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 I need. 

 

EVENT = IF(LEN([NOTE]),[TOTAL METRIC],BLANK())

 

Note = SWITCH(
max(DimDate[Date]),
VALUE("01/01/2017"),"PUT TEXT HERE",
BLANK()
)

 

 

 

The NOTE is hardcoded to text events. 

 

Am I able to use a FactEvent table to link to the data and make the notes dynamic and appear in the graph on the specific date? This is much easier to maintain plus we have a lot of events! 

 

Any help much appreciated. 

Thanks


Annie

 

 

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors