I need an excel formula that searches within a range, a cell that contains a word with letter "W" and then multiply the number stored in the cell from the right of it by 2 and display the sum of all this multiplied values in another cell. Example: Range A4:Y4; B4 contains word "Woo" and C4 contains number "3"; E4 contains word "Wood" and F4 contains number "5"... I need Z4 to contain C4*2+E4*2+... Please help me with that.
Searching a letter within a range in excel
55 Views Asked by Boris Turcu At
2
There are 2 best solutions below
Related Questions in EXCEL
- Power Query / M Code, extract a list of tables into one main table, some column headers same but some different and in different order (and in row 2)
- Is there a way to validate the cell format (from excel) to fetch the symbol from it (in Java)?
- Excel - Visual Basic, macro with autofill "1"
- Getting Run-time error '13': Type Mismatch using .Find
- Getting website metadata (Excel VBA/Python)
- Excel Code Editor doesn't work (blank window)
- How to find out how many of each 2, 3 and 4 required to fit in 100 using excel?
- How would I apply a rather complex summation formula like this in Excel?
- Removing a Button from Customized Excel Ribbon
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- How to use VBA to bold just some text
- VBA Code to filter and get values from csv to excel worksheet
- Look up max alpha numeric value
- Azure Batch for Excel VBA
Related Questions in EXCEL-FORMULA
- How would I apply a rather complex summation formula like this in Excel?
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- Look up max alpha numeric value
- Assistance with sum for multiple separate rows using multiple criteria please
- Excel Index+ match Returns duplicate value
- requesting excel formula to compare columns but going in order and skipping blanks
- Concatenate and dropping leading zeros
- Math's & Excel formula to calculate the interest rate from the EMI and principal amount?
- Excel - How get everything to the left of the second to last instance of a character
- Calendar is not Highlighting Accurate Time
- How to search for size in the list and set costing based on it?
- Is there a way to set a cells value based on the value this cell held at a certain time, even when the cell value changes over time?
- How to sum monthly data in Excel into quarterly
- Can I use Sumproduct arrays and check two separate criteria counting TRUE statements?
Related Questions in FORMULA
- How to calculate the accuracy in number guessing game?
- Using arrayformula to automate sumif in each row, Google spresdsheet
- Formula assistance
- I am receiving a color formatting error when trying to run a Crystal Report in Personify
- Google Sheets: Return 1st, 2nd, 3rd, etc. instances of strings from range. Prepend values from top row to each string returned
- Gurobi unable to find the most optimal Link Utilization
- How do I return a certain date into a textbox based on a DateTimePicker date using VB.net Framework 8.0?
- Trying to get names from a box on the right to automatically appear in another box when a different box has a value in it
- PHP Spreadsheet modify one sheet without corrupting others
- Calculate an expression in java which is accurate upto 19 digits
- Filtering data by row Google sheets
- excel formula to find the first row that contains specific text
- Change cell colour of column data depending on stock availability in Google Sheets
- Excel formula to compare date/time and report if it is less than 24 hours
- Automatically change cell reference in formulas, based off of cell updating
Related Questions in ARRAY-FORMULAS
- Can I use Sumproduct arrays and check two separate criteria counting TRUE statements?
- IF AND OR Nested ArrayFormula not working - What am I missing?
- Return next not blank result based on a raw
- Google Sheets: Return 1st, 2nd, 3rd, etc. instances of strings from range. Prepend values from top row to each string returned
- Count duplicates if other cell contains week num google sheets
- Waterfall value (get value from previous row to populate the next one) with arrayformula
- Find minimum value in 2nd column of month in first column
- ArrayFormula with SUMIFS not Working in Google Sheets
- Issue merging a SUMIFS using index Match into an arrayformula
- Filtering data by row Google sheets
- round sum_range of arrayformula
- Formula needed for column and row dependency
- Calculating percent error of each element of a list given a list of ratios
- Use Excel VBA Evaluate Method to Return/Analyze Moving Array At Every Row Over Range
- Google Sheets - Assign category based on list of search words
Related Questions in FORMULA-EDITOR
- How modified brew Formulae for Libvmaf in Mac os BigSur
- Error: Incorrect parameter type for operator '<'. Expected Boolean, received Text
- what is the wrong with this formula always get this error in the the pic attached
- I am having trouble with an excel formula
- Remove placeholders in libreoffice formula editor
- Excel Query : cell with -ve values symbol treated as calculation instead of text
- reading excel file value goes with comma
- Formula proofreading & alternative
- Kendo grid AngularJS - Create a formula builder in kendo ui grid
- Want to add Edit "Page # of #" footer in CRYSTAL REPORT
- How to autofill OpenOffice Math formula editor in OOo Calc?
- Convert time range to a text value
- Searching a letter within a range in excel
- Code WORKS Math DOESN'T
- MS Excel : changing the counter in formula to some other than the one Excel has assumed
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Try this in Z4:
Hit CTRL + SHIFT + ENTER.
Make sure A4 is not a number (otherwise this formula counts the value of A4 times the number of cells that don't contain "W").
If you want to count cell as well that contain small w's, use SEARCH instead of FIND (SEARCH = case insensitive; FIND = case sensitive).
Keep in mind: OFFSET is a volatile function, i.e. if you have a large datasheet, this might slow down the work a bit.