Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
lucas4bi
Partner - Creator
Partner - Creator

Straight Table Showing Maximum 28 columns

Hello Everyone,

i've created a straight table with some dimensions.

What i need to do is let the user choose some new dimensions selecting them from another field, and make the selected dimension appear in the table.

So i created this new field with the dimension names in it.

and added all the dimension in my straight table with this conditional enabler:

Index(GetFieldSelections(NewField),'MyDimension')<>0

Everything works as expected as long as the total number of columns in the Straight Table is less than 28.

When i want to add the 29th dimension, all the dimension with a conditional enabler disappear.

Why is that?

Has anybody encountered this issue?

Thanks in advance

Luca

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

GetFieldSelections(NewField,',',10000) // 10.000 values as maximum

View solution in original post

2 Replies
Clever_Anjos
Employee
Employee

GetFieldSelections(NewField,',',10000) // 10.000 values as maximum

lucas4bi
Partner - Creator
Partner - Creator
Author

Thank you! i just figured out that GetFieldSelections(NewField) was returning something like "10 of 107" instead of the complete list of the fields.

With the other parameters works properly now.