Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Gurus,
I want to display my 3 selections seperated with ':' in chart window titel
Please find the sample xl file
required output format: 2014:Jan:Q1
I have year Field:2014,2015
Yearquarter:14-Q1( need to Bring only Q1 in lable)
Month Year:Jan-14(need to Bring only Month )
Thanks inadvance
This should work:
=Min(Year) & ';' & MinString(Month(Month)) & ';' & Right(MinString([Quarter year]),2)
Check attached qvw
You can use this ... But there should be always one selected ..
=Year&':'&Month(Month)&':'&Right([Quarter year],2)
Hi tresesco,
Thanks for your Time.
If i select only Month it should display :Jan
it would be getfield selections based
thanks,
Like this? PFA
Note, you can avoid the ';' symbols as well by checking null in a condition under if clause.