Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi ,
i have loaded straight table with date interval of Days ,but how ever instead of X as shown in attached table i want to display 'Days' how can i achieve it, thanks for pointers.
=replace(class(days,50),'<= x <',' days')
try the below expression:
replace(Class(Days,05), '<= x <','Days')
Hi,
if you just want to replace 'x' with 'days', you better use the third parameter of the Class() function:
Class(Days,50,'Days')
this also keeps the numerical representation of the class values -> no sorting issues.
hope this helps
regards
Marco