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

Recent content by amyceres

  1. amyceres

    Days of the week except Sunday and Holiday

    I reason I want to do this is because I want to know the number of days between {lt_master.lock-exp-dt} and the current date.
  2. amyceres

    Days of the week except Sunday and Holiday

    I am trying to exclude the Sundays and holidays. I think this is correct but I am not really sure. Local DateVar Start := {lt_master.lock-exp-dt}; Local DateVar End := currentdate; Local NumberVar Weeks; Local NumberVar Days; Local Numbervar Hol; DateVar Array Holidays:=[ Date (2013,1,1)...
  3. amyceres

    Excel formula to Crystal

    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.
  4. amyceres

    Convert date to number or general format?

    whoohoo they both work perfectly...thanks for the help
  5. amyceres

    Convert date to number or general format?

    I am not using VBA but I am using Crystal Reports.
  6. amyceres

    Convert date to number or general format?

    Yes I want to know how to convert the date to a general number...
  7. amyceres

    Convert date to number or general format?

    4/22/13 + 60 would be 6/21/13 but I wanted it in general format or number format
  8. amyceres

    Weekends and Holiday

    thank you for the information...I found that I probably going to include the holiday in the @weekend formula because I am not getting the result that I want from keeping everything separate.
  9. amyceres

    Convert date to number or general format?

    I want to convert ({currentdate}+ 60)to a number format.. so it would be 4/22/13 +60 = 41446..I been searching through the forum and I haven't gotten a clear answer. So say use a datevalue() or a dateserial() but either of them work.
  10. amyceres

    Weekends and Holiday

    I placed the formula in the Record Selection like you said to and it works!!!Thanks! but the @Holiday formula was suppose to be inserted into the Report Header in the Design View? I don't think that would work because it shows nothing.
  11. amyceres

    Weekends and Holiday

    Thanks Pete for the help..I am assuming it should look like this.??? WhilePrintingRecords; Local DateVar Start := {lt_master.application-dt}; Local DateVar End := currentdate; Local NumberVar Weeks; Local NumberVar Days; Local Numbervar Hol; DateVar Array Holidays; {lt_master.application-dt}...
  12. amyceres

    Weekends and Holiday

    It's a in house software database program that we used called Unifi.
  13. amyceres

    Weekends and Holiday

    All the information I pulled is from CVS file.
  14. amyceres

    Weekends and Holiday

    Please give me information? or examples?
  15. amyceres

    Date and Time Calculation

    Question would you be taking holidays into consideration?

Part and Inventory Search

Back
Top