Julia Varkey Posted February 20, 2020 Share Posted February 20, 2020 Created a graphical table that has percentages in three columns, however when one of the columns is blank that specific cell says "(Empty)" in the graphical table. Is there anyway to get that specific cell to just be blank without saying "(Empty)". Tried doing a custom expression using a case when and if statement however the data itself is numeric, so if I try to put an N/A or anything it errors and won't allow me to do the custom expression, because of different data types. Link to comment Share on other sites More sharing options...
Khushboo Rabadia Posted February 25, 2020 Share Posted February 25, 2020 Try adding THEN SN([Value],0) after your expression i.e. replacing all (Empty) values after calculationwith 0 Link to comment Share on other sites More sharing options...
Julia Varkey Posted February 25, 2020 Author Share Posted February 25, 2020 Thanks for that suggesstion Khushboo. I have tried a similar statement, however I don't want it to be 0, because there are instances in my data where the value is actually 0. I would like it to be either blank, or N/A rather than saying "(Empty)" Link to comment Share on other sites More sharing options...
Khushboo Rabadia Posted February 26, 2020 Share Posted February 26, 2020 You can either change entire integer column to string in order to show blank i.e. THEN SN(String([Value]),'') or just add rule in calculated value to color "[Axis.Value] is null" to white so it is not seen You can also try some javascript approach. This is with cross table so for graphical table you would need to search for relevant div ids. https://spotfired.blogspot.com/2019/04/remove-empty-from-cross-table-without.html Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now