Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Month Name

Dear Friends ,

I want to show the date in my report as shown below

Business Growth Report  1-Aug


There fore I in the header section I have written following expression But It shows the month number but it does not work . pls help me


='Business Growth Report  ' & min(RISK_DAY)&'-'&monthname(max(RISK_MONTH))

1 Solution

Accepted Solutions
Kushal_Chawda

try this

='Business Growth Report  ' & min(RISK_DAY)&'-'&month(MakeDate(year(Today()),max(RISK_MONTH),day(Today())))

View solution in original post

6 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

What are the values of your Risk_Month field?

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
upaliwije
Creator II
Creator II
Author

Screenshot_1.png

marcus_sommer

You could try it in this way:

min(RISK_DAY)&'-'&date(max(RISK_DATE), 'MMM')

- Marcus

Kushal_Chawda

try this

='Business Growth Report  ' & min(RISK_DAY)&'-'&month(MakeDate(year(Today()),max(RISK_MONTH),day(Today())))

its_anandrjs

Why not simply this you can try.

='Business Growth Report  ' & min(RISK_DAY)&'-'&Month(max(RISK_MONTH))


Or


='Business Growth Report  ' & min(RISK_DAY)&'-'& Date( Month(max(RISK_MONTH)), 'MMM')

sunny_talwar

Another option

='Business Growth Report  ' & min(RISK_DAY) &'-'& MaxString(RISK_MONTH)