Excel Merge Cells according to another column data - excel

I have a problem about merged cells.
I have the following data and want to merged cells according another column's data
Ex:
What can I do , using VBA or formula ?
Thank you !!

Related

I need formula to get the sum of specific KPI for main sheet

master data
main sheet
trying to get the data from master sheet for the colors as mentioned for main sheet from master sheet for the above mentioned kpi
there is no formula for color based operation in excel. You can try using combination of vlookup and hlookup formula to get data from a vertical-horizontal tabular data set.

How to remove VLOOKUP function in Excel and retain the cell value

I am using Pandas to load data from an Excel file. However, the data is lookup from another Excel file.
Is it possible to retain the cell value and remove the VLOOKUP function?
I am using:
Excel (Microsoft 365)
Windows 10
Thanks!
Yes, I would just select the cells then copy : paste.special values and that will leave you the result of each vlookup. Do this for the row, column or cell as needed.

Excel: Copy Values automaticly from one sheet to another via conditional formula

I need to transpose a Excel Table.
How can i execute the following rule via Excel Commands:
If 2 cells match on different sheets check if another cell in this row matches with one header cell in the second sheet and then get value from another cell in this row. take a look at the images.
As per your given example you can try below formula. Once the formula will work in same sheet then you can adjust the formula to work on another sheet. Then you you need to add sheet name before ranges.
=IFERROR(INDEX($C$2:$C$10,SUMPRODUCT(ROW($A$2:$A$10)*($A$2:$A$10=$F2)*($B$2:$B$10=G$1))-1),"")

Excel 2016 - Conditional Formatting an entire Row

I am trying to add conditional formatting to an entire Row based on the corresponding entries on the values in the row below.
I need to set it up for the entire row as i am importing the data and the amount of columns taken up will be different on each import.Screenshot
As you can see i want to change the cell reference where it says "P23?" to yellow if the words Cast appear in the Cell below.
Any help appreciated.
Thanks
Change your formula to:
=A4="Cast"

Excel - How to add error handling to an array formula using OFFSET

I am populating a number of columns based on a lookup using OFFSET and MATCH. I want to add error handling so that the appropriate values are displayed in each of these columns - how can I do this in Excel and in Excel VBA?
Here are the details of the formula that I use:
I enter this formula as an array formula for the entire range B2:E100
=OFFSET(CustomerMaster!$A1,MATCH(A2,customerNumberList,0)-1,2,1,4)
I use the customerNumber in column A2 to fetch a 4 columns related to the customer in another sheet - CustomerMaster.
Now, if there is an error, I want all the 4 cells to have some value like "Unknown".
Something like the following
=IFERROR(OFFSET(CustomerMaster!$A1,MATCH(A2,customerNumberList,0)-1,2,1,4),"Unknown")
will work (at least if you have Excel 2007 or later).

Resources