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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel formula to Crystal

Status
Not open for further replies.

amyceres

Technical User
Mar 28, 2013
23
0
0
This is my excel formula
=IF(D6="","",IF(D6="Purchase",TEXT(WORKDAY(E6,1,Holidays),"DDDD"),IF(D6="Refinance",TEXT(WORKDAY(A6,4,Holidays),"DDDD"))))
I trying to find out how I would convert this into crystal report.
 
I see you have already sorted out the formula for workday()

You then have to incorporate that variabkle into a nested if .. then .. else

If D6 = "," then "" else
(If D6 = "Purchase" then totext(yourdatevar1, "dddd")
else
If D6 = "Refinance" then totext(yourdatevar2, "dddd")
)

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top