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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
vsmk
Frequent Visitor

How to insert a Header in Power BI?

Say the report is for the period 1st Apr to 10th Apr 2018.    The header should be

SALES REPORT AS ON 1st Apr 2018 to 10th Apr 2018

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@vsmk

If the date range is dynamic, create a measure which will have text + the date range.

Then use the Card visual as a header and put measure as a Field for the visual.

 

Example for measure definition -

HeaderMsg = "SALES REPORT AS ON " & FORMAT(MIN(table[field1]), "mmmm dd, yyyy hh:mm AM/PM") & " TO " & FORMAT(MAX(table[field1]), "mmmm dd, yyyy hh:mm AM/PM") 

)

 

Regards

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@vsmk

If the date range is dynamic, create a measure which will have text + the date range.

Then use the Card visual as a header and put measure as a Field for the visual.

 

Example for measure definition -

HeaderMsg = "SALES REPORT AS ON " & FORMAT(MIN(table[field1]), "mmmm dd, yyyy hh:mm AM/PM") & " TO " & FORMAT(MAX(table[field1]), "mmmm dd, yyyy hh:mm AM/PM") 

)

 

Regards

Thanks @Anonymous

vsmk
Frequent Visitor

Say the report is for the period 1st Apr to 10th Apr 2018.    The header should be

SALES REPORT AS ON 1st Apr 2018 to 10th Apr 2018

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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