Tagged Questions
0
votes
1answer
22 views
Excel: Agregate multiple tables separated by title
I have an excel file generated by SAP. I need change its format from multiple tables separated by a title to one single table. This is the original table:
and i need it to look like this:
Im new ...
0
votes
1answer
229 views
set a range from different worksheet and vlookup function
this one should simple, but i do know why it doesnt work.
This code is working properly :
Sub test_range()
Dim Range1 As Range
Set Range1 = Sheet4.Range("B2:F6081")
End Sub
but when i try to ...
0
votes
1answer
231 views
Macro to do a VLOOKUP that searches for specific column names to input specific information
I need some help with a macro/vlookup. Originally, I recorded the macro and just did the VLOOKUP manually thinking that would always work. Lately, it hasn't been functioning properly (and I'm not sure ...
0
votes
0answers
265 views
Excel macro, copy and paste data in next available row of a changing referenced column
I am trying to run an excel macro but I have not been able to make it work correctly. Where I have gotten this far with the VBA code is the following:
Sub CopyandPasteMacro()
NextRow = ...
0
votes
2answers
1k views
if error and vlookup in vba macros [closed]
My task to write a formula which includes if, iferror and Vlookup
I need to apply the formula till the end of last row which contains values .
if vlookup throws NA , then the cell should be blank , ...
0
votes
2answers
760 views
Using VLookup in a macro
I'm new to VBA but I'm hooked! I've created a workbook that tracks overtime in 2 week blocks with one 2-week block per worksheet. The macro I'm trying to debug is designed to carry any changes made ...
0
votes
0answers
951 views
Vlookup on multiple selections of pivot table and having the selected labels in other cells
I have a pivot table which can select the values for different Quarters in Report filter.
Now I'm doing Vlookup based on the selection of quarters on the table. If I select Quarter-1 it is displaying ...
0
votes
2answers
5k views
check if cell matches any others in range if it does copy content in to “results” sheet
im having trouble working out a way to check if the text in A3 matches the text in any other cells in range A5:A50, if it does i want to copy the contents of the Y cell (with the same row number as ...
0
votes
1answer
66 views
Need to delete old SKU# and enter new SKU # onto a master sheet
This project keeps throwing new and exciting things that I am having a good deal of trouble with.
I am hoping that there is an easy solution but I am starting to suspect it may be a macro problem.
...
0
votes
3answers
1k views
Excel macro formula adding quotes around formular causing vlookup to not work
I am trying to write a macro, which adds a formula to a cell. For some reason, the macro is adding quotations around the cell range, which is now causing the cell to return the #name error. Any fix ...
1
vote
1answer
6k views
Excel Vlookup in macro with range
I'm trying to add a vlookup to a cell in an excel macro, however I can't seem to get the arguments of the function right nor the arguments of the range function
Please help me in stating how to write ...