Pavel Smirnov Posted April 2, 2011 Posted April 2, 2011 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.
comment Posted April 2, 2011 Posted April 2, 2011 Try a repeating calculation field = Middle ( Extend ( YourField ) ; Get ( CalculationRepetitionNumber ) ; 1 )
Pavel Smirnov Posted April 5, 2011 Author Posted April 5, 2011 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.
comment Posted April 5, 2011 Posted April 5, 2011 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 ) )
Pavel Smirnov Posted April 6, 2011 Author Posted April 6, 2011 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)
Vaughan Posted April 6, 2011 Posted April 6, 2011 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now