Search results

  1. J

    DSum Function with 2 Criteria

    Yes [strTransmission] is the name of my Field and there are 2 Records A:B between 2020-04-01 and 2020-04-30. Thanks
  2. J

    Correct Syntax of Countiif Function

    Thanks a lot
  3. J

    DSum Function with 2 Criteria

    Hello Guys, I was trying to find the Total count of Records based on 2 criteria in my Report. This is my Code: =DSum("[strTransmission]","[Table1]","strTransmission='A:B' And [datPayment Date] Between #2020-04-01# And #2020-04-30#") But I am getting #Error Could you please let me know how...
  4. J

    Correct Syntax of Countiif Function

    Hi, I think I solved this. I use DSum Function and it is working. Thanks a lot for your Help
  5. J

    Correct Syntax of Countiif Function

    Thanks it worked perfectly. I know I am annoying you sorry about that. How to find the Total Sum of Payments made between these Dates? I have another Field [curPaid Amount] and how to find the Sum of this field by giving the criteria as Between 4/1/2021 and 4/30/2021. Sorry again for...
  6. J

    Correct Syntax of Countiif Function

    I gave like this: =sum([strClaim ID]iif([datPayment Date]between #2020-04-01# and #2020-04-30#,1,0)) But getting Error. Thanks
  7. J

    Correct Syntax of Countiif Function

    Thanks so much for your suggestion. My fields are [strClaim ID] and [datPayment Date] I want to find how many claims we received in a month. So could you please let me know how to do this? Thank You
  8. J

    Correct Syntax of Countiif Function

    Sorry but Problem Not Solved. I am getting the count of Claims if I am not giving any criteria: =Count([strClaim ID]) But getting Error when I am giving criteria like this: =Count([strClaim ID]) where [datPayment Date] Between #2020-04-01# and #2020-04-30# Thanks
  9. J

    Correct Syntax of Countiif Function

    Thanks a lot
  10. J

    Correct Syntax of Countiif Function

    Hello Guys, In the Unbound Text Box control I have put the following Code =Count([strClaim ID])(iif([datPayment Date]) between #2020-04-01# and #2020-04-30#) I want to find the Total Number of Claims ID Between 01-Apr-2020 and 30-Apr-2020 I am getting an Error: I think the Syntax is...
  11. J

    Find Total Number of Payment Made in a Month Query

    Hi, Thanks a lot. Now I am getting like: Two issues: I want to sort this data by Month. Like Apr-20, May-20, Jun-20...Mar-21 Second issue, though there isn't any Record for May I want to show like Month Total ----------- ------- May-20 0 I am attaching the Database...
  12. J

    Find Total Number of Payment Made in a Month Query

    Hello Guys, In my Table I have a field Payment Date. I want to find the Count of Payments made in a month. This is the data in my Table: I want to display like this in my Query: This is my Query: And this is my Query Result: Could you please let me know how to Fix this? Thanks
  13. J

    Store Query Results in a Temporary Table

    Thanks a lot. Do you have any idea how to do this? This is my Query: Select [Total Corrsepondence] from [QryDepartment1] Union all Select [Total Corrsepondence] from [QryDepartment2] Union all Select [Total Corrsepondence] from [QryDepartment3] Union all Select [Total Corrsepondence] from...
  14. J

    Store Query Results in a Temporary Table

    Hello DB Guy, I have created a Union Query and this is my Query Result: Could you please let me know how to use Cross Tab Query. The result should be like: Thanks a lot
  15. J

    Store Query Results in a Temporary Table

    Yes Got over Excited. Sorry
  16. J

    Store Query Results in a Temporary Table

    Thanks a lot. Let me first create the Union query.
  17. J

    Store Query Results in a Temporary Table

    Thanks a lot I tried Cross Tab Query but getting an Error Message like: Thanks
  18. J

    Store Query Results in a Temporary Table

    Thanks a lot for your Help.
  19. J

    Store Query Results in a Temporary Table

    Hello DB Guy, I have created 1 Select query to get the Total Count starting with 2 Departments and it is working fine. Then I have create a Union Query: SELECT [Dept1 Total New] from [Query3] UNION SELECT [Dept2 Total New] from [Query4]. But I am getting Query Result in Rows: I want the...
Back
Top Bottom