Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

i have a field called a1,b2,c3 but i want in front end like a,b,c?

i have a fields called a1,b2,c3  but i want in front end like  a,b,c or  1,2,3?  by using a some function ? what is the function and how to change ?

13 Replies
Not applicable
Author

Could you change the names in your load statement?

a1 as a

b2 as b

c3 as c

Not applicable
Author

no by using function only i have to change ?

not as ,rename , ?  tell me possible function to use except  replace

Not applicable
Author

could you share an example of how you want to use it?  Text box? Chart? Background image?

Not applicable
Author

list box i have like

t1:

load * inline [

a1,b2,c3

]; 

this i want show in front end like    a,b,c  or  1,2,3?

i think using input field we can?

whether input field is function or not?

Not applicable
Author

Are you actually loading your data inline?  If so, you can name your fields whatever your heart desires.....

And inputfields would probably be less than ideal

male_carrasco
Creator
Creator

Hi manojqlik

Try to use function: Rename field

Ej:

Rename field XAZ0007 to Sales;

FieldMap:

Mapping SQL SELECT oldnames, newnames FROM datadictionary;

Rename fields using FieldMap;

Ale.-

Not applicable
Author

can we call call input field is a function?

Not applicable
Author

Inputfield is something you'd designate a field as in your load statement, it isn't a function.  It allows a user to replace that value with their own.

male_carrasco
Creator
Creator

Try this:

pic26302.jpg

Best Regards