Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vvira1316
Specialist II
Specialist II

Logarithmic bar chart shows null dimensional value with larger count than other values is showing up at bottom/out of sort

Hi,

Logarithmic bar chart shows null dimensional value with larger count than other values is showing up at bottom/out of sort

Any idea why?

LogScaleBar.PNG

Expression (same is used in Sort)

Count(

{<

[Version]={'>0'},

[ATDS]={'Val1*','Val2*'}

>}  [ID])

Thanks,

Vijay

1 Solution

Accepted Solutions
sunny_talwar

May be use a calculated dimension (or changes in the script to fix this)

Calculated dimension

=If(Len(Trim(Comp)) = 0, ' ', Comp)

Capture.PNG

View solution in original post

8 Replies
sunny_talwar

Would you be able to post a sample?

Anil_Babu_Samineni

Have you used any scale options in Axes tab?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
vvira1316
Specialist II
Specialist II
Author

I'm preparing it. Without calculated expression it worked fine.

vvira1316
Specialist II
Specialist II
Author

yes. I've static max

vvira1316
Specialist II
Specialist II
Author

Attached please find sample data set and QVW

vvira1316
Specialist II
Specialist II
Author

I've attached the sample files

sunny_talwar

May be use a calculated dimension (or changes in the script to fix this)

Calculated dimension

=If(Len(Trim(Comp)) = 0, ' ', Comp)

Capture.PNG

vvira1316
Specialist II
Specialist II
Author

Thanks.