LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Counting days and array element reference

Q1
to test fill range C4:B14 with test values 1999 and range B4:B15 should
include values from 1 to 12.
Formula for 1:st days weekday of month:
D4: =WEEKDAY(DATE(C4,B4,1))
Result 1=Sunday, 2=Monday,...

To find the 3:rd friday based on the 1st day calculation above
E5: =IF(D4<=6,(6-D4)+(2*7+1),(6-D4)+(3*7+1))

Workday might be the function youre looking also. Excels helps are specially
good for functions.

Q2
Here is one example how to use array and how to refer to cells.
Rws = Array("5", "9", "1")
For i = 0 To 2
Cells(Rws(i), 8).Select
Selection.Font.Bold = True
Next

You can also type "cells" to VBA code, select the word and press F1 for more
instructions.

-Mika

wrote in message
oups.com...[i]
Hi all, I am new to excel, so pardon my ignorance. I did a search, but
still can't figure this out:

1. Suppose I have many rows of dates: "MAY99", "JUN99", etc. Each row
always referes to the third Friday of the month. I want to add a column
to the file: the number of days from the starting day. So if we set the
starting date to be 05/01/99, for the row of "MAY99", let's say the
third Friday of MAY of 1999 is May 20th. Then for this new column, the
entry for the new column is 20. (Ideally, I want to count in business
days, rather than calendar days)

How can I do that?

2. In other language, to acess certain row of an array is easy: A, I
can do a loop on i. For example:
i = 1,4,7,10,etc.

But how can I do this in excel/VBA? Let's say I want to refer to cell
A1, A4, A7, A10, etc? (as in VBA: i write "A8" not "A[8]" where "8" can
cange, so i find it hard.

Thanks a lot, appreciate your help!



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Counting Array element asingh Excel Worksheet Functions 4 April 12th 10 03:30 PM
Array problem: Key words-Variant Array, single-element, type mismatch error davidm Excel Programming 6 November 9th 05 05:54 AM
Array problem: Key words-Variant Array, single-element, type mismatch error davidm Excel Programming 1 November 8th 05 04:21 AM
UDF to reference a specific element in an array GH[_2_] Excel Programming 4 January 8th 05 12:55 PM
Array element Andrea[_8_] Excel Programming 5 December 7th 04 08:24 PM


All times are GMT +1. The time now is 08:15 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"