Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Manually class enter

I am using this calculated dimension i want to make it manually and make ranges 0-5, 5-10 and if user enter 15 then 0-15,15-30 by input.

How can it be

=Replace(Class(ID,10),'<= x <', '-')

Jay

1 Solution

Accepted Solutions
its_anandrjs

Then create a variable  vNumEnter and use it in the expression

=Replace(Class(ID,vNumEnter),'<= x <', '-')

And also use this variable in any input box for number enter.

Regards

Anand

View solution in original post

3 Replies
its_anandrjs

Then create a variable  vNumEnter and use it in the expression

=Replace(Class(ID,vNumEnter),'<= x <', '-')

And also use this variable in any input box for number enter.

Regards

Anand

Anonymous
Not applicable
Author

Hola!

Create buckets in the backend.Perhaps, that will meet your req.

HTH.

Anonymous
Not applicable
Author

Hi

Use the if condition instead of class function

like

If(ID <5,'0-5',

If(ID >5 and ID <10 ,'5-10',

If(ID >10 and ID <15 ,'10-15',

If(ID >15 and ID <20 ,'15-20','Above 20'))))