Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have created two expression in qlik sense. both are working fine individually
SUM({$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount)
This will give total values as per our dimensions in stacked bar chart
num(SUM({$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount)/SUM(total <Flag_Amount>{$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount),'##.##%')
This will give percentages for above mentioned expression in different chart
But now i want combine these two measures i.e example if first measure value is 144 and second expression value is 28.57%
after i combine both measure i want show like this 144 (28.57%)
Can you guys please help me out from this
Thanks & Regards,
B V S S
May be :
=SUM({$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount)&' ('&num(SUM({$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount)/SUM(total <Flag_Amount>{$<Project_Id={$(vProjectId)}>}Budgeted_Project_Amount),'##.##%')&')'
Hi @Taoufiq_Zarra ,
Thank you for the response
I have tried this But it's not working
Thanks & Regards,
B V S S
Hi @bvssudhakar
can you share a sample data where we can test