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!

Search results for query: *

  • Users: supportsvc
  • Content: Threads
  • Order by date
  1. supportsvc

    Date prompt use in Formula with DatePart?

    Hello, Report is to show data for each week based on a date range prompt I have this formula but it errors saying the {?DateRange} prompt I get an error "A date is required here." with the {?DateRange} highlighted If DataPart("ww", ({TransactionDate}) = DatePart("ww",{?DateRange}) then...
  2. supportsvc

    Date Range within Date?

    Hello, I am trying to figure how to find dates in TransactionDate that falls into the PeriodEndingDate So company does not use the calendar year for their fiscal year. TransactionDate contains dates when the invoice transaction posted. Each FiscalPeriod for each year doesn't necessary end on...
  3. supportsvc

    How to limit the number of records based on the quantity in a field?

    Hello, I'm trying to figure out how to limit the number of records based on the quantity field My attempt: INSERT INTO dbo_SO_InvoiceTierDistribution ( InvoiceNo, LineKey, LotSerialNo, TierType, ItemCode, WarehouseCode, QuantityShipped ) SELECT dbo_SO_InvoiceDetail.InvoiceNo...
  4. supportsvc

    Combine Multiple If Statements as Single String?

    Not sure if I'm asking that correctly? There are several fields for a section and the user would like to see the fields combined when they are checked and display the field name(s). So I started this but it's not fully working If {RA_ReceiptsHeader.UDF_COMPLETE_SET_OF_ATTACHMENT} = "Y" then...
  5. supportsvc

    Query to Display $0 if no record in Quarter with YTD total

    I can't figure out how to display records with $0 but with YTD totals when there's no data in the selected quarter Here's the query The form has 3 for the Quarter and 2020 for the Year Since the end goal is to report on all companies and employees of the reporting year on a quarterly basis...
  6. supportsvc

    Quarterly Query To Include YTD Totals

    I can't figure out how to display the YTD totals with the Mth1, Mth2, Mth3 to display the previous quarter totals This is what I have so far SELECT tblEmployees.CompanyCode, tblEmployees.DepartmentNo, tblEmployees.EmployeeNo, tblEmployees.LastName, tblEmployees.FirstName...
  7. supportsvc

    Monthly Totals For Previous Quarter

    Hello, I can't seem to figure out how to get First month of the previous quarter total Second and Third I have the following but the totals aren't correct UNLESS it's ran in the 1st month of the current quarter for the previous quarter data. here are the snippets...
  8. supportsvc

    Distinct Count for Unique Number of Employees in Each Month

    Need help on how to determine the unique number of employees in each month of the quarter by the 12th of the month in the previous quarter. ** How many employees worked by the 12th of each month in the previous quarter. So tx number of employees each month by the 12th of the month of the...
  9. supportsvc

    Negative as Positive Total?

    Hello, I have this issue when trying to multiply the Quantity Shipped to the Unit Price to get Extended Total. Which is, it turns it into a positive total since it's multiplying negative by negative. I can't think of how to change it so it results in the correct negative / positive total?
  10. supportsvc

    Previous Quarter Sum and Last Quarter Sum in 1st Q the Following Year

    Hello, So I'm close but can't figure out how to go about only showing the previous quarter sum and then to handle the last quarter to display when ran in the 1st quarter the following year. This is what I have so far SELECT PR_Employee.EmployeeKey, PR_Employee.DepartmentNo...
  11. supportsvc

    If AND then else?

    Hello, I can't seem to get this right. If {PR_EmployeeTaxHistory.CalendarMonth} = "01" and ToNumber({PR_EmployeeTaxHistory.CalendarYear}) = Year(CurrentDate()) then ToNumber({PR_EmployeeTaxHistory.CalendarYear}) = Year(CurrentDate())-1 else ToNumber({PR_EmployeeTaxHistory.CalendarYear}) =...
  12. supportsvc

    Page Break on Group Footer not working?

    Trying to set a "page break" on Group Footer #4, however the DepartmentRecap info on the Group Footer with the Check Amount are showing on the employee page and then the details on the next page. I have it set on New Page After the formula NOT OnLastRecord Tried it just checking the New Page...
  13. supportsvc

    Extract info from a string?

    There's a field with information in it that's combined rather than separated out. And unfortunately it varies Example of the variations [code] 12/1/2017 P11345-PP 12/6/2017 12/15/2017 B124536-CM 12/31/2017 2/28/2018 A919777-IN 3/30/2018 3/7/2018 A959264-IN 4/6/2018 10/15/2018 C234364-DM...
  14. supportsvc

    .xlsm Export freezing up

    Hello, I can't figure out why, but the script to refresh, save then export and save as a .xlsx from the .xlsm with multiple worksheets keeps freezing, I believe on processing the Export function. This hasn't happened before so I am not sure why it started. I compared the script with other...
  15. supportsvc

    Text to Format as Date?

    There's a field with 6 characters in which the last 4 are the month and date (mmdd) Looks like this for instance, today, the batch number is 000809 I need to convert that into a date so I've attempt the following: Format(Right([Batch Number], 4), "mm/dd/" & "2018" in order to achieve 08/09/2018...
  16. supportsvc

    Sum in Pivot?

    Please see image Need to have the QOO, QPO and the Months summed to calculate against the item QOH as a single row
  17. supportsvc

    Operation Must Be an Updateable Query

    Hello, This is frustrating Situation: 1) Linked to SQL Tables 2) One table, AR_OpenInvoice will not work with the Update Query or Pass-through Query 3) AR_OpenInvoice has PrimaryKeys 4) All other tables in the SQL db update using the Update Query in MS Access 5) I don't believe it's a...
  18. supportsvc

    Sum on Formula That's Summed?

    I am unable to do a Sum on the following formula Q1Taxable: If Sum ({@Q1}, {@Name}) > {@UILimit} then {@UILimit} else Sum ({@Q1}, {@Name}) Where Q1: If {PR_EmployeeTaxHistory.CalendarMonth} IN (["01", "02", "03"]) then {PR_EmployeeTaxHistory.GrossWages} else 0 The Q1Taxable is on the...
  19. supportsvc

    Windows Task Scheduler Stopped Launching Excel and running .xslm

    For some reason this stopped working recently. Initially it appeared to be an updated for Office a few weeks ago. IT reinstalled and that seemed to have fixed it though running the Task it didn't seem to run, however the scheduled task ran next day. In the past week it has stopped and nothing...
  20. supportsvc

    If OnLastRecord?

    Hello, There's this report and on Suppress Freight and InvTotal (so not to repeat when there are multiples lines on an invoice) if OnLastRecord = False then Next({AR_InvoiceHistoryDetail.DetailSeqNo}) <> '000000' Else False How do I modify it to also handle if the 1st record doesn't have...

Part and Inventory Search

Back
Top