keeping data locked

DutchExcelLover

New Member
Joined
Sep 19, 2015
Messages
1
=ALS(MAAND(VANDAAG())=1;X.ZOEKEN(A4;WorkoutJan23[Oef];WorkoutJan23[1RM]);X.ZOEKEN(A4;WorkoutJan23[Oef];WorkoutJan23[1RM]))
is the formula I am using to get some data from Januari (1). I have this in multiple colums with different months
What I don't want is , if it becomes Februari the data will disapear.
How can I keep the data as they were in Januari?
Tnx
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Remove the IF() part:
=X.ZOEKEN(A4;WorkoutJan23[Oef];WorkoutJan23[1RM])

By the way, most users here are used to the English formula notation. So your your Duthch formulas and notation will be difficult to understand.
To quickly find the English notation of a formula, go to VBA editor and run this macro:
VBA Code:
Sub GetFormula()
    
    Debug.Print ActiveCell.Formula
End Sub

The formula will be shown in the 'Immediate window' bottom left
 
Upvote 0

Forum statistics

Threads
1,223,368
Messages
6,171,682
Members
452,416
Latest member
johnog

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