kungx Posted November 5, 2014 Posted November 5, 2014 How do I create a hard or soft return in my calculation? I have two different fields in one calculation but I want them spaced out with a sharp return. ex: data1field1 ¶ data1field2 ¶ does not work as easily as I expected. The message says "An Operator (e.g +,-,*,...) is expected here."
Kris M Posted November 5, 2014 Posted November 5, 2014 put the pilchrow in quotes i.e data1field1 & "¶" & data1field2 or use List ( data1field1 ; data1field2 )
Lee Smith Posted November 5, 2014 Posted November 5, 2014 Been a long time since version 7, but if I recall, it requires quotes sounding the Pilcrow Ҧ".
comment Posted November 5, 2014 Posted November 5, 2014 ex: data1field1 ¶ data1field2 ¶ does not work as easily as I expected. The message says "An Operator (e.g +,-,*,...) is expected here." It needs to be: data1field1 & ¶ & data1field2 The & concatenate operator is the one that's expected. put the pilchrow in quotes i.e "¶" A single ¶ does NOT need to be quoted. 1
Lee Smith Posted November 5, 2014 Posted November 5, 2014 Or instead, use the Ampersand as it should be. DUH
Recommended Posts
This topic is 3738 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