locked
Last 30 day transactions RRS feed

  • Question

  • I am trying to show all transactions for the past 30 days. How can I replicate the following Access desktop expression in Access Web App?

    >=Date()-30

    Thanks


    John Fletcher

    Wednesday, September 21, 2016 10:42 PM

Answers

  • Hi,

    Use: Between DateAdd(Day,-30,Today()) And Today() 

    Please notice we could not use Arithmetic Operators to calculate date in Access web.

    • Proposed as answer by Chenchen Li Monday, September 26, 2016 5:18 AM
    • Marked as answer by Chenchen Li Friday, September 30, 2016 5:18 AM
    Saturday, September 24, 2016 11:19 AM

All replies

  • Use Today() instead of Date()

    See https://msdn.microsoft.com/en-us/library/office/jj249622.aspx


    Regards, Hans Vogelaar (http://www.eileenslounge.com)

    • Proposed as answer by Chenchen Li Thursday, September 22, 2016 6:44 AM
    • Unproposed as answer by Chenchen Li Saturday, September 24, 2016 11:16 AM
    Thursday, September 22, 2016 5:10 AM
  • That was the first thing I tried. Doesn't work.

    John Fletcher

    Thursday, September 22, 2016 2:01 PM
  • In that case, I hope that someone who knows more about Web Apps can help you.

    Regards, Hans Vogelaar (http://www.eileenslounge.com)

    Thursday, September 22, 2016 3:49 PM
  • Hi,

    Use: Between DateAdd(Day,-30,Today()) And Today() 

    Please notice we could not use Arithmetic Operators to calculate date in Access web.

    • Proposed as answer by Chenchen Li Monday, September 26, 2016 5:18 AM
    • Marked as answer by Chenchen Li Friday, September 30, 2016 5:18 AM
    Saturday, September 24, 2016 11:19 AM