Search results

  1. A

    How to Make The Right Numbers Add Up

    I do. In fact, qryPastRevenue only has 3 fields in it: ProdRevType, PastRevenueAmt, and RevenueDate
  2. A

    How to Make The Right Numbers Add Up

    I'm getting tripped up when I try to run the query sub_LastRevenueDates. When I set the criteria (qryAssumptions.AssumpDate >= qryPastRevenue.RevenueDate) and execute the query, Access considers it a parameter query and then I have to input a RevenueDate. I don't see how this fits in with where...
  3. A

    How to Make The Right Numbers Add Up

    See attached. I tried to use more eaxmples showing more months to better illustrate it and I changed the field names on the Assumption amount and the Forecast amount, to better clarify.
  4. A

    How to Make The Right Numbers Add Up

    I was just about to post a correction: it actually does work and it doesn't. And you're right I figured that I needed to do an aggregate query and group the qryAssumptions results before joining them with the qryPastRevenue results. Here's how it did work: for the ProdRevType of "MRR" it...
  5. A

    How to Make The Right Numbers Add Up

    Unfortunately that didn't work. I followed your instructions but when I joined the tables with and changed join properties to include all records from qryAssumptions, the result is way too many records. I sent you a representative test records but in the real results: qryAssumptions has 4278...
  6. A

    How to Make The Right Numbers Add Up

    It's only true when the ProdRevType contains "MRR" (I don't know if you saw my notes below on rows 27-29) which brings me back to my original dilemma: How do I show that condition--ProdRevType contains "MRR"--AND that TotForecastAmt = RevenueAmt of the most current month + ForecastAmt and treat...
  7. A

    How to Make The Right Numbers Add Up

    Understood, sorry. See attached. Hope that will help a little bit better.
  8. A

    How to Make The Right Numbers Add Up

    I have 2 query results. qryRevenue Revenue_Month(text) Revenue_Year (number) RevenueMoYr (text) RevenueDate (date) SL_Bucket (text) SL_Prod (text) ProdRevType (text) Revenue Amount (number) qryAssumptions Assumption_Month (text) Assumption_Year (number) AssumpMoYr (text) AssumptionDate...
  9. A

    Adding Amt to Previous Month's Amt

    I have re-read your response and now I get what you were saying: I need to create a RevenueDate field based on the Revenue_Month and Revenue_Year minus 1 month so that it will join to the correct AssumpDate field that I want. Thank you!
  10. A

    Adding Amt to Previous Month's Amt

    Thank you, I did create a field based on the first day of the month. That is the RevenueDate and AssumpDate fields in both queries. Sorry that I didn't explain that part. I will see if I can figure it out using DateAdd as you mentioned.
  11. A

    Adding Amt to Previous Month's Amt

    I have 2 queries. The results of Query1 are: Revenue_Month (text) Revenue_Year (number) RevenueDate (Date) Legacy_Bucket (text) Legacy_Prod (text) ProdRevType (text) RevenueAmt (number) Query2 Results: Assumption_Month (text) Assumption_Year (number) AssumpDate (date) Legacy_Bucket (text)...
  12. A

    Convert 3-char month & year to Date

    No wonder you asked if I had played around with it; I made the ridiculously simple seem hard. Thanks
  13. A

    Convert 3-char month & year to Date

    I meant to name the column AssumptionMonth of course, not AssumptionMo. I am indeed playing around with it now. Thank you
  14. A

    Convert 3-char month & year to Date

    I have 2 columns that are listed as such: AssumptionMo AssumptionYr MAY 2014 JUN 2015 JUL 2015 OCT 2016 I need to create a field called AssumpDate that converts the month into a date field on the 1st day of the month...
  15. A

    Crsosstab Query Doesn't Recognize Expression in Source Query

    TRANSFORM Sum(qry303e_SFADetailProjRevMRC_ONLY.ProjRevMRC) AS SumOfProjRevMRC SELECT qry303e_SFADetailProjRevMRC_ONLY.ProdRevType, qry303e_SFADetailProjRevMRC_ONLY.[Rev Lag], qry303e_SFADetailProjRevMRC_ONLY.[Rev Flow Through] FROM qry303e_SFADetailProjRevMRC_ONLY GROUP BY...
  16. A

    Crsosstab Query Doesn't Recognize Expression in Source Query

    ProjRevDate is a date field formatted as mmm-yy
  17. A

    Crsosstab Query Doesn't Recognize Expression in Source Query

    I have a query where these are the fields: ProductRevType RevLag RevFlowThru CloseMoYr ProjRevDate CurrentMRC ProjRevMRC The ProjRevMRC field is an expression that reads: ProjRevMRC: IIf([ProjRevDate]>=DateSerial(Year(Date()),Month(Date()),1),[CurrentMRC]*[qry303a_SFADetailMRC_ONLY]![Rev...
  18. A

    Calculated Field in Crosstab Query Needs Rounding

    Ranman256 I am not sure I follow you. I did the calculated field in the base query, and in the base query it allowed me to right-click and just change the Properties of the result there. But no such luck once that field was summed in a crosstab.
  19. A

    Calculated Field in Crosstab Query Needs Rounding

    I have a very basic query with the following calculated field in it: ProjRevNRC: IIf([ProjRevDate]>=DateSerial(Year(Date()),Month(Date()),1),[CurrentNRC]*[Rev Flow Through],0) I went into the properties if that field inside the query design and changed it to Standard with 0 decimal places...
  20. A

    Access 2007 Unrecognized Database Format? I'M SCREWED!!!! HELP!!!!

    It miht be just one troublesome form or object, but I can't even get into the db. As soon as I select it when trying to import it into a new blank db, I get the error message "Unrecognized database format [my file path]" :banghead:
Back
Top Bottom