Get each price per month for a category?

maximus

I have data with the entities date, name, price. I managed to get distinct categories in the Categories colume for each name with = LEFT(B2;FIND(" ";B2)). In fact I want to get for each categorie the summed up monthly prices per month.

My sheet: My Data:

I tried:

=SUMIF(B2:B6;LEFT(B2;FIND(" ";B2));C2:C6)

However, this formula returns 0 and also does not give me the prices per categorie and per month.

I really appreciate your help!!!

barry houdini

If you want a sum on each row which will sum for the category of the current row and the month of the current row you can use SUMIFS like this

=SUMIFS(C:C;E:E;E2;A:A;">"&EOMONTH(A2;-1);A:A;"<="&EOMONTH(A2;0))

SUMIFS requires Excel 2007 or later

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Django annotate price per month

From Dev

How to add 'per person' to a category price in woocommerce

From Dev

get the count and the price of category column then group by category

From Dev

How to sum each user totals per category

From Dev

Finding the lowest price for each category using join sql in Hive

From Dev

magento get products per page for category list

From Dev

Underscore JS: get 5 items per category

From Dev

price check by product if not available get category price else product price - mysql query needed

From Dev

price check by product if not available get category price else product price - mysql query needed

From Dev

query to get equal number of rows per category + sub category

From Dev

Get Record Per Month But Also Get Zero If No Records That Month

From Dev

Is the auto-renewable In-App-Purchase price per period or per month?

From Dev

Regex: Get a month of each line

From Dev

Get value for each day in month

From Dev

Unable to get null values for the count per month

From Dev

How to get the sum of sales per month?

From Dev

How to get the data per month in MySQL

From Dev

Using SQL how can I write a query to find the top 5 per category per month?

From Dev

MySql get Sum Price and Order Count based on Month?

From Dev

get minimum price variation and maximum price variation according to specific category woocommerce

From Dev

get minimum price variation and maximum price variation according to specific category woocommerce

From Dev

Pandas groupby category, rating, get top value from each category?

From Dev

Current month each day stats per user row

From Dev

How to get the number of orders for each category?

From Dev

SQL: How to get Max of Variable (per category of another variable)

From Java

Get each quarter data based on month in oracle

From Dev

Create Set to get Last month of Each Year

From Dev

How to get SUM and COUNT data each Month?

From Dev

how to get nth date of each month for an year

Related Related

  1. 1

    Django annotate price per month

  2. 2

    How to add 'per person' to a category price in woocommerce

  3. 3

    get the count and the price of category column then group by category

  4. 4

    How to sum each user totals per category

  5. 5

    Finding the lowest price for each category using join sql in Hive

  6. 6

    magento get products per page for category list

  7. 7

    Underscore JS: get 5 items per category

  8. 8

    price check by product if not available get category price else product price - mysql query needed

  9. 9

    price check by product if not available get category price else product price - mysql query needed

  10. 10

    query to get equal number of rows per category + sub category

  11. 11

    Get Record Per Month But Also Get Zero If No Records That Month

  12. 12

    Is the auto-renewable In-App-Purchase price per period or per month?

  13. 13

    Regex: Get a month of each line

  14. 14

    Get value for each day in month

  15. 15

    Unable to get null values for the count per month

  16. 16

    How to get the sum of sales per month?

  17. 17

    How to get the data per month in MySQL

  18. 18

    Using SQL how can I write a query to find the top 5 per category per month?

  19. 19

    MySql get Sum Price and Order Count based on Month?

  20. 20

    get minimum price variation and maximum price variation according to specific category woocommerce

  21. 21

    get minimum price variation and maximum price variation according to specific category woocommerce

  22. 22

    Pandas groupby category, rating, get top value from each category?

  23. 23

    Current month each day stats per user row

  24. 24

    How to get the number of orders for each category?

  25. 25

    SQL: How to get Max of Variable (per category of another variable)

  26. 26

    Get each quarter data based on month in oracle

  27. 27

    Create Set to get Last month of Each Year

  28. 28

    How to get SUM and COUNT data each Month?

  29. 29

    how to get nth date of each month for an year

HotTag

Archive