Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I am displaying the chart title dynalically. i am using getFieldSelections(field) which gives results like 0430-ABC, 0554-ABC, 0676-BBC, 0823-CAB, 0875-GAP, 0909-CHD.
but i want display the chart title like B0430,B0554,B0676,B0823,B0875,B0909.
How i will split the string 430-ABC, 0554-ABC, 0676-BBC, 0823-CAB, 0875-GAP, 0909-CHD. and get the values like in the following format
B0430,B0554,B0676,B0823,B0875,B0909.
Hi
You can use B&Subfield(Field1,'-',1)
Hi,
use the label ='B'&''&left(field,4) .You will get the 'B' with first foru digit of Character i.e( B0430 )
Regards,
Iyyappan.
This will give only one value(0430), but i want all the values should dispaly
you can use
=
concat(distinct 'B' & left(Field,4),',')
Hi,
I attach sample QV file.
Regards,
Iyyappan.
use
Concat(Distinct B&Subfield(Field1,'-',1),',')
it's working. Thank you very much.