Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
I need to make a chart showing me the % of each letter , however in my BD SQL Server I have records in Blank, so when graphic shows me a column without a title on the chart, and that I need not see, I need skip all blank record of my calculations.
Example:
I use de cake chart, in the Dimensions i have:
and in the expression a use:
Your help please.
Thank you.
Ah, I see what happened. I used the name of your expression label instead of the name of the dimension. Try
=Count({<PREGUNTA615_12={"=Len(Trim(PREGUNTA615_12))>0"}>}PREGUNTA615_12)
Try this as your calculated dimension:
If(Len(Trim(PREGUNTA615_12)) > 0, PREGUNTA615_12)
Hi,
Check the "Suppress When Value is Null" option in Dimension Tab for PREGUNT625 Dimension.
Then that blank value is probably a space or an empty string. You can try something like =Count({<Segmento={"=Len(Trim(Segmento))>0"}>}PREGUNTA612_12) to hide that value.
It does not work , I remain exactly the same, only me ordered from oldest to youngest .
I have that option enabled and it does not work .
Thank you
is correct, the value I have in my BD is an empty string .
Try to apply your code in Expression But I did not work or I'm misapplying .
Thank you
Ah, I see what happened. I used the name of your expression label instead of the name of the dimension. Try
=Count({<PREGUNTA615_12={"=Len(Trim(PREGUNTA615_12))>0"}>}PREGUNTA615_12)
Would you be able to share a sample to show the issue?
thanks gwassenaar I Apply Your Solution and run!