Jump to content

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

Recommended Posts

Posted

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

Posted

Try a repeating calculation field =

Middle ( Extend ( YourField ) ; Get ( CalculationRepetitionNumber ) ; 1 )

Thanks, it helps,

but I do not like that i need to create a lot of additional fields.

Posted

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 ) 

)



Posted

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)

Posted

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.

This topic is 5050 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.