Johnny777 Posted September 3, 2008 Posted September 3, 2008 Hi Is there a way to hide fields on a report. I have a basic letter setup with the standard address fields Basically I want to hide the country on the letter if it is UK and show it if it is any other country
bcooney Posted September 3, 2008 Posted September 3, 2008 Create another field cCountry = if (country="UK", "", country). Place this field on the printout.
Fitch Posted September 3, 2008 Posted September 3, 2008 Note that starting with FM9 you can accomplish this with conditional formatting.
bcooney Posted September 3, 2008 Posted September 3, 2008 Well, his profile does say FM8, but honestly, old habits die hard.
Fitch Posted September 3, 2008 Posted September 3, 2008 Nothing wrong with your proposed solution, I was just giving Johnny a reason to upgrade. Those types of calcs still have uses even in FM9, e.g. in IWP you can't use conditional formatting.
Raybaudi Posted September 3, 2008 Posted September 3, 2008 old habits die hard. cCountry = if (country="UK"[color:red]; ""[color:red]; country)
LaRetta Posted September 4, 2008 Posted September 4, 2008 A small thing but, neither If() nor Case() require default so it could even be: cCountry = If ( country :notequal: "UK" ; country ) I've been gone for awhile and it feels good to be back connected with everyone! LaRetta :smile2:
Johnny777 Posted September 8, 2008 Author Posted September 8, 2008 Hi all That last suggestion has worked fine - thanks to everyone who replied
Recommended Posts
This topic is 5920 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