Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sage Accpac Financial Reporter Titles Generated 1

Status
Not open for further replies.

jsh8286

Technical User
Mar 4, 2010
61
CA
We have a G/L specification that is exactly what we want for the exception of one thing. They use it to print departmentalized statements and a consolidated statement. When they print department statements all is good since the department being printed the title appears properly at the top of the page (we are using the following formula to get this description):

"=FRDESC(2,FR("CurAcSegVal2"))

The issue and the question is when we print a consolidated statement the resulting title is "N/A" obviously since we did not generate a departmental statement.

Is there a formula that will combine the best of both worlds so that when we print departmental statements we continue to get the department description and when we print consolidated we get the word "Consolidated" as opposed to "N/A" when printed?

Thanks in advance for any information posted.
 
=IF(FR("ReportAs")="Consolidated","Consolidated",FRDESC(2,FR("CurAcSegVal2")))
 
Thanks Ettienne! Much appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top