Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I have a Name and Date Field. For these two i want to write an expression and i need to take these two fields in a single dimension. I am using a Bar Chart and need to show it as below image..PFA image for your reference...
Bharat ,
Try:
Name&'-' & Date_Field as Name_Date_Field and use this as dimension.
Thanks
AS
Bharat ,
Try:
Name&'-' & Date_Field as Name_Date_Field and use this as dimension.
Thanks
AS
HI Amit,
Thanks for your reply...I have a name field, In that name field i have 10 sub fields and i need only 3 fields so for that i have hard coded and written as a Calculated Dimension as
=if(name='LV Information & Operation' or name='MOET HENNESSY ASIA PACIFIC/HK' or name='SINARMAS LAND/IA',name)
Now in this dimension i need to add the date field and get together(both name and date field) in the same calculated dimension. This one i need to do in the dimension itself not in the backend. Can you pls help me on this.
Thanks,
Bharat
Bharat,
Do one this first filter your name filed inside script side like below:
Where match(name,'LV Information & Operation','MOET HENNESSY ASIA PACIFIC/HK' ,’INARMAS LAND/IA’) ;
Next now you have name field with desired ones and later you can do what I have suggested in my first reply.
Thanks,
AS
Thanks Amit...It worked...
Regards,
Bharat
Good