Convert SumIfs to Access

Foolzrailer

New Member
Joined
Jun 12, 2017
Messages
15
Hello

I've finally figured out how to a formula in Excel to give me SumIFS of all the data I need. Now however I need to convert this to Access if that is possible.

Danish Excel formula for SumIf:
Excel Formula:
=(SUM.HVISER(B:B;A:A;">="&A2;A:A;"<"&A2+1/24))/15

Basically my Column A in Excel would be
Code:
[Table1].[Time]
and Column B would be
Code:
[Table1].[Data]

But I can't figure out how to convert it, any support on getting this correct would be much appreciated.
 
Last edited:

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Not 100% sure but my first try would be:
SQL:
Select
  Sum([Data])/15 as Total
From
  Table1
Where
  [Data] >= A2
  and [Data] < (A2 + 1/24)

Kind of guessing (or not guessing, really) what's in A2...
 
Upvote 0
Not 100% sure but my first try would be:
SQL:
Select
  Sum([Data])/15 as Total
From
  Table1
Where
  [Data] >= A2
  and [Data] < (A2 + 1/24)

Kind of guessing (or not guessing, really) what's in A2...
Gave your suggestion a go, but I can't get it to return anything, tried a few different syntaxes..

Forgot to put in what kind of data it is, my bad.
Excel Column A = Access [Ark1].[Time] is filled with a lot of Date and time 06-09-2017 16:00:00
Excel Column B = Access [Ark1].[Data] is filled with a lot of flowdata 2.67


Tried writing your code:
SQL:
Select Sum([Ark1].[Data]/15) As Total
From Ark1
Where (([Ark1].[Data] >= [Ark1].[Time]) And ([Ark1].[Data] < ([Ark1].[Time]+1/24)));
 
Upvote 0
For examples sake can you provide about 3-4 rows of data from column A and B ... (which would also be enough to provide an expected result as well)...
I'm not sure what the expectation here is comparing data to time (data greater than or equal to time and data less than time)...or at least in your last attempt that seems to be happening but maybe it's not supposed to...
 
Upvote 0
Your data is in records in an Access table? Then you probably need a Totals query or to use DSum function. When you post your data sample, be sure to say where this data is located and an example of expected output.
 
Upvote 0
The syntax for the ‘SUMIF’ function is pretty straight forward:

‘=SUMIF(range, criteria, [sum_range])’

The ‘range’ parameter is actually the range of cells that will be evaluated by the ‘criteria’ parameter.

The ‘criteria’ parameter is the condition that must be met in the ‘range’ parameter. For instance, if our ‘range’ was a column that listed t-shirt color, a value like ‘red’ or ‘white’ could be our ‘criteria’. The ‘criteria’ value can be text, a number, a date, a logical expression, a cell reference, or even another function.

*One thing to note, however, is that any mathematical expression must be enclosed in double quotes as we will see when we cover using comparison operators.

The ‘sum_range’ parameter is optional as noted by the brackets. This simply means that if omitted, the ‘sum_range’ will default to the same cells you chose for the ‘range’ parameter.
First, we will leave out the ‘sum_range’ to see a very simple example using a single column of numerical values.

Here we have a column of numbers from B4 to B14.

First we will use ‘SUMIF’ to get the sum of all values greater than 20. Then we will use ‘SUMIF’ to get the sum of all values less than 30.

To be sure, we could easily sort our single column of values in ascending order and quickly find the first value 21 or larger and highlight all other values below it to find the sum, but let’s just go with the concept here.

“To use the ‘SUMIF’ function to find the sum of all values greater than 20 we only need 2 parameters.”


I hope this information will be helpful!
Matt Henry
 
Upvote 0
The syntax for the ‘SUMIF’ function is pretty straight forward:

‘=SUMIF(range, criteria, [sum_range])’

The ‘range’ parameter is actually the range of cells that will be evaluated by the ‘criteria’ parameter.

The ‘criteria’ parameter is the condition that must be met in the ‘range’ parameter. For instance, if our ‘range’ was a column that listed t-shirt color, a value like ‘red’ or ‘white’ could be our ‘criteria’. The ‘criteria’ value can be text, a number, a date, a logical expression, a cell reference, or even another function.

*One thing to note, however, is that any mathematical expression must be enclosed in double quotes as we will see when we cover using comparison operators.

The ‘sum_range’ parameter is optional as noted by the brackets. This simply means that if omitted, the ‘sum_range’ will default to the same cells you chose for the ‘range’ parameter.
First, we will leave out the ‘sum_range’ to see a very simple example using a single column of numerical values.

Here we have a column of numbers from B4 to B14.

First we will use ‘SUMIF’ to get the sum of all values greater than 20. Then we will use ‘SUMIF’ to get the sum of all values less than 30.

To be sure, we could easily sort our single column of values in ascending order and quickly find the first value 21 or larger and highlight all other values below it to find the sum, but let’s just go with the concept here.

“To use the ‘SUMIF’ function to find the sum of all values greater than 20 we only need 2 parameters.”


I hope this information will be helpful!
Matt Henry
Please note the forum where this post resides, and read the question carefully.
They are not asking for how to do the SUMIF function in Excel. They are asking how to do it in Access.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top