Copy data without formulas to make a copy

cadandcode

Board Regular
Joined
Jan 21, 2023
Messages
125
Office Version
  1. 2019
Platform
  1. Windows
  2. Mobile
BETON TAKİP OCAK 2022.xlsm
ABCDEFGHIJKLM
234SOL TÜPSAĞ TÜP
235Şub.23BETON SANTRALITÜNEL DEN GELEN RAPORBETON SANTRALITÜNEL DEN GELEN RAPOR
23601.02.20237274735101.02.202372747351
23702.02.2023  
Sayfa2
Cell Formulas
RangeFormula
B236B236=SUMIFS('BİRLEŞTİRLMİŞ FORMÜLLÜ'!$E$2:$E$100,'BİRLEŞTİRLMİŞ FORMÜLLÜ'!$A$2:$A$100,A236,'BİRLEŞTİRLMİŞ FORMÜLLÜ'!$D$2:$D$100,"=*SOL*")
D236D236=SUMIFS('BİRLEŞTİRLMİŞ FORMÜLLÜ'!$E$2:$E$100,'BİRLEŞTİRLMİŞ FORMÜLLÜ'!$A$2:$A$100,A236,'BİRLEŞTİRLMİŞ FORMÜLLÜ'!$D$2:$D$100,"=*SAĞ*")
A237A237=+A236+1
C236:C237C236=+'https://d.docs.live.net/68d082e010717dce/Desktop/ödf T7/günlük rapor/[T7 SARF LİSTESİ.xlsm]T7 ÇIKIŞ SOL'!$B253
E236:E237E236=+'https://d.docs.live.net/68d082e010717dce/Desktop/ödf T7/günlük rapor/[T7 SARF LİSTESİ.xlsm]T7 ÇIKIŞ SAĞ'!$B264


I'm trying to copy only cell content as numbers into right table to prevent datas disappearing if I remove sheets (@Fluff this is what I meant yesterday by looking for a copy of lost data) so this copying only numbers will help me if I lose sheets or remove them, I can keep numbers. Left table has formulas to get datas automatically and super useful. But at the end of the month I should delete sheets so left table gets zero data, this means cells lost the data which I have to make copy into right table to make a backup.
How can I get result of formulas and put them into right table?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi,

You can test
VBA Code:
Sub Kopyalamak()
 Range("I236:M236").Value = Range("A236:E236").Value
End Sub
 
Upvote 0
Hi,

You can test
VBA Code:
Sub Kopyalamak()
 Range("I236:M236").Value = Range("A236:E236").Value
End Sub
Well, it worked but it should do it automatically when left table updates. Because I may forget to run that macro like I forgot to make a copy.
 
Upvote 0
OK ...
VBA Code:
Private Sub Worksheet_Calculate()
' içinde sayfa2 modülünde
  Range("I236:M236").Value = Range("A236:E236").Value
End Sub
 
Upvote 0
Hopefully as you wanted ....:)
Whenever the worksheet recalculates ...
Have you tested it ?
 
Upvote 0
How do you get your worksheet updated ?
 
Upvote 0

Forum statistics

Threads
1,216,157
Messages
6,129,195
Members
449,493
Latest member
JablesFTW

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top