Re: $$Excel-Macros$$ Re: Help with replacing formula with value over large range

2017-12-19 Thread who
Sub CopyPastVal() Cells.Copy Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues Application.CutCopyMode = False End Sub Thanks, David On Sunday, December 17, 2017 at 12:12:31 AM UTC-8, Ravi K wrote: > > Thanks David. > Will try to incorporate this into the macro. > > Cheer

$$Excel-Macros$$ Re: Help with replacing formula with value over large range

2017-12-18 Thread Ravi K
Sub chkdt() Application.ScreenUpdating = False Application.Calculation = xlCalculationManual Dim rw, cl, i, q As Double 'rw - no of used rows, cl - no of used column, i - lookup for row,q - lookup for column Dim dif, t, dt As Long t = 4 dt = 5 rw = ThisWorkbook.Sheets("MINUTES").Range("A" & Rows.

Re: $$Excel-Macros$$ Re: Help with replacing formula with value over large range

2017-12-17 Thread Ravi Krishna
Thanks David. Will try to incorporate this into the macro. Cheers Ravi On 17 Dec 2017 7:20 am, "who" wrote: > Might try this too. Thanks, David > > Sub CopyPasteAll() > Cells.Select > Selection.Copy > Selection.PasteSpecial Paste:=xlPasteValues > ActiveSheet.Paste > Applicat

$$Excel-Macros$$ Re: Help with replacing formula with value over large range

2017-12-16 Thread who
Might try this too. Thanks, David Sub CopyPasteAll() Cells.Select Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues ActiveSheet.Paste Application.CutCopyMode = False ActiveCell.Select End Sub On Friday, December 15, 2017 at 10:14:17 PM UTC-8, Ravi K wrote: > > Hi