Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have a pivot table
Status. Count (Id)
Completed. 2
Pending. -
Pending is showing - because I don't have data for pending but null is showing left side of the column but I want to show it below 2 like below
Status. Count (Id)
Completed. 2
Pending. -
The NULL replacement of '-' is a string and therefore in the standard-settings left-aligned. If you want to change it to right-aligned you need to change the layout-settings or you need to replace the NULL with a real value, maybe:
dual('-', 0)
Thank you for your reply.in measure i kept text alignment to right
try
num(ID) as ID
Hi chnty
Thanks for your reply it'sN ot working
Try this
If(IsNull([Count (Id)]), '-', [Count (Id)]) as id
The NULL replacement of '-' is a string and therefore in the standard-settings left-aligned. If you want to change it to right-aligned you need to change the layout-settings or you need to replace the NULL with a real value, maybe:
dual('-', 0)
Thank you for your reply.in measure i kept text alignment to right