Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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))
try this
='Business Growth Report ' & min(RISK_DAY)&'-'&month(MakeDate(year(Today()),max(RISK_MONTH),day(Today())))
What are the values of your Risk_Month field?
Regards,
Kaushik Solanki
You could try it in this way:
min(RISK_DAY)&'-'&date(max(RISK_DATE), 'MMM')
- Marcus
try this
='Business Growth Report ' & min(RISK_DAY)&'-'&month(MakeDate(year(Today()),max(RISK_MONTH),day(Today())))
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')
Another option
='Business Growth Report ' & min(RISK_DAY) &'-'& MaxString(RISK_MONTH)