Jump to content

Letter from field


This topic is 4763 days old. Please don't post here. Open a new topic instead.

Recommended Posts

My situation is: I have blank form, and I need to put each letter from Last Name or other to each cell in a blank form. So, FM11 doesn't have text spacing. How I can do this?

Maybe I need to make another fields with calculation and paste spaces between letters? If it's the best way, please say how to this calculation.

And another way that I think is make fields for each cell and make calculation for these fields equally each letter of LastName.

So and I have dates that i need to put it over cels like -date dd month mm year yyyy. How make it? I really need it.

If you have another advices I'll be glad see it. Please, help.

P.S. I put blank form, it help you imagine what I need.

1.jpg

Link to comment
Share on other sites

I believe you could make it all in one field - something like:

Let ( [

w = 25 ; 

pad = Substitute ( 10^w - 1 ; "9" ; " " ) ;



text =

Left ( Extend ( Name ) & pad ; w )

&

Left ( Extend ( StreetAddress ) & pad ; w )

&

Left ( Extend ( City ) & pad ; w )

&

...



] ;

Middle ( text ; Get ( CalculationRepetitionNumber ) ; 1 ) 

)



Link to comment
Share on other sites

I believe you could make it all in one field - something like:

Let ( [

w = 25 ; 

pad = Substitute ( 10^w - 1 ; "9" ; " " ) ;



text =

Left ( Extend ( Name ) & pad ; w )

&

Left ( Extend ( StreetAddress ) & pad ; w )

&

Left ( Extend ( City ) & pad ; w )

&

...



] ;

Middle ( text ; Get ( CalculationRepetitionNumber ) ; 1 ) 

)



Excellent, Thank you, Consultant. You are my hero)

Link to comment
Share on other sites

There is a usability problem with the sender naming on the posts, because the poster name is in the grey "title bar" of the message while the "tag" (for want of a better word) appears prominently under the avatar image where the user name would be expected.

Link to comment
Share on other sites

This topic is 4763 days old. Please don't post here. Open a new topic instead.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.