Indirect function to assign dynamically

rcal01

New Member
Joined
Aug 1, 2019
Messages
1
I am able to use a formula to calculate the mondays in a month when the user enters a date, example, entering July 10, 2019, states that 3 mondays are left within that month which is correct, but i need to set a range of cells with that formula and i am trying to use VBA to do so, but it gives a 1004 error. I assume its because of the quotation marks "" needed for the INDIRECT function. I have used other formulas such as SUM without any issues.

This if the full formula:
Range("E17:E" & 17 + amount).Formula = "=IF(" & "L17<>0,IF(OR(SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(L17&":"&EOMONTH(L17,0))))=2)) > 4,AND(SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(L17&":"&EOMONTH(L17,0))))=2))=4,$M$1=4)),((J17*12)/52),0), ((J17*12)/52) )

This is the Portion that calculates the remaining mondays
SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(L17&":"&EOMONTH(L17,0))))=2))
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
My first thought is that you should create a user-defined function to calculated the number of Mondays. If you are using VBA anyway there seems no reason not to...

But if, for some reason, you can't, you can also calculate the number of Mondays using some artithmatic.

Try this formula for the number of MOndays:

=FLOOR.MATH((EOMONTH(L17,0)-L17)/7,1)+IF(MOD(EOMONTH(L17,0)-L17,7)+WEEKDAY(L17,2)>7,1,0)

It's a little longer than yours, but contains no INDIRECT() and is cleaner.

Basically, the logic of it is that the FLOOR.MATH() part calculates the number of full weeks left. Obviously each week has a Monday. The MOD() calculates how many days extra are left after the full weeks. You add that to the day of the week you started on, and if it gets past 7 (i.e. Sunday using WEEKDAY ( ,2)) then you've gone over into the new week and found another Monday.

This approach treats a Monday which is an input as not counting... I.e 29 July 2019 gives 0, becuase 29 July is the last Monday in July.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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