[Affiliate]
Blog Stats
- 3,070,575 hits
-
Join 3,281 other subscribers
- Follow wmfexcel on WordPress.com
Search wmfexcel
Want Google to translate this page?
-
Recent Posts
Top Posts & Pages
- How to sort bar chart in descending order?
- Show number in thousand (k) or in million (M) by using custom format
- How to replace value with a value from another column in Power Query
- Repeat all item labels in Pivot Table (aka Fill in the blanks please)
- Date Formats - A trick to format date with "st", "nd", "rd", "th"
- Insert a text string into a specific position of another text string in #Excel
- The INDIRECT trick of using Structured Reference in Conditional Formatting
- Open an embedded Excel file during a slide show in PowerPoint?
- Send a cell content to Google search
- How to put the Date Modified info on #Excel worksheet using #PowerQuery
My YouTube Channel
My Facebook page
- My Tweets
Tag Archives: SUMPRODUCT
The amazing SUMPRODUCT
Advanced use of SUMPRODUCT for multi-conditional SUM In the previous posts, we talked about the basic of SUMPRODUCT, the behaviors of logical values (i.e. TRUE/FALSE) when they are put into basic mathematics operations. These set the foundation to understand the … Continue reading
The logic gate
Have you heard about Logic Gate? I learned logic gate in high school physics. Decades ago… so don’t expect I can remember what it is. 😛 Having said that, I do remember the fundamental concept about AND gate and OR gate, … Continue reading
SUM the PRODUCTs or SUMPRODUCT? That’s the question.
The basic of SUMPRODUCT Suppose we have a column showing retail price of different items; another column showing the units sold (illustrated above). To get the total sales, most people will deploy a helper column to get the sales of each … Continue reading
CrossTab SUM with 3 variables
This post is trying to answer a question by Laura in the post of 2D SUMIF with two variables – one on column and one on row. Here’s part of the question: ……I want to look up the department in the vertical … Continue reading
Make impossible possible
Convert text of specific pattern like “1d 2h 3m 4s” into real time (26:03:04) in Excel To kick start the Year of Monkey, let’s challenge the apparently impossible… Do you think it is not possible in Excel? If you do, you … Continue reading
SUM Time in the end of text strings
Did you encounter a task like this? I did. Actually it is not as difficult as you may expect. It could be done in just a minute IF the data is not too bad, like the one shown above. I … Continue reading
Posted in Excel Tips, Formula
Tagged Array formula, Find and Replace, RIGHT, Sample File, SUBSTITUTE, SUMPRODUCT, Time, wildcard
6 Comments
Perform VLOOKUP with 2 lookup values
4 different ways to perform LOOKUP with 2 lookup values We know that VLOOKUP is very useful. At the same time, we know that VLOOKUP has its limitations. E.g. VLOOKUP only looks from left to right; VLOOKUP only handle one … Continue reading
Calculate number of a specific day between two dates
Answer: =SUMPRODUCT(–(TEXT(ROW(INDIRECT(B1&”:”&B2)),”DDDD”)=”Sunday”)) ‘where B1 is start date; B2 is end date. Excuse me? What it says?