Hi I've been searching around google for a while and not able to find the solution to my specific issue at the moment. So the problem is simple I want to select and copy a and paste only the values not the formulas generating the values.
I've checked : Copy Entire Row (Values not formulas) VBA
https://msdn.microsoft.com/en-us/library/aa195818(v=office.11).aspx
the current code I'm using is below I'm currently just using "OutputWorksheet.Paste" which is pasting the row but it also carries the formulas and tried "OutputWorksheet.PasteSpecial.xlPasteValues" but it keeps throwing "Compile Error: Expected Function or Variable"
Any help would be greatly appreciated or a better way of finding a Row based off the cboMADropDown value in one sheet copying the row and pasting to another sheet with just values no formulas.
With InputWorksheet ' Set sheet we want to search
Set FindRow = .Range("O:O").Find(What:=cboMADropDown, LookIn:=xlValues) ' Set FindRow container by searching Column F with cboMADropDown Value and look for the cell value to compare
End With ' End the With Statement
FindRowNumber = FindRow.Row ' Set the FindRow row value to a number
InputWorksheet.Rows(FindRowNumber).EntireRow.Copy 'Grab contents of entire row which is going to be updated
LastRow = OutputWorksheet.Range("A" & Rows.Count).End(xlUp).Row 'Finds the last blank Row on the MA tracking history sheet
OutputWorksheet.Activate 'Activate the worksheet so the .select command works with no errors
OutputWorksheet.Rows(LastRow).Select 'Select last blank row from MA tracking history
OutputWorksheet.Paste 'Paste contents of the clipboard to backup
OutputWorksheet.Range("O" & LastRow).Value = TimeStamp 'Add time stamp for the update
OutputWorksheet.PasteSpecial xlPasteValueswithout.betweenPasteSpecialandxlPasteValues? - Vincent GOutputWorksheet.PasteSpecial xlPasteValuesand I get Run-time error '1004': Method 'PasteSpecial' of Object'_Worksheet' failed - Kaneki ByteWorksheetPasteSpecial, while you should probably use theRangeone:OutputWorksheet.Rows(LastRow).PasteSpecial xlPasteValues- Vincent G.Rangeis that I haveInputWorksheet.Rows(FindRowNumber).EntireRow.Copyon the clipboard not stored in a Array or Variable so it should be just paste but I'm trying to look for an operator which says just paste Text only rather then paste all the source formatting and formulas - Kaneki Byte