Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default meaning of Dynamic?

instead of saying

Rowsource is Sheet1!A1:A10

you might use code to determine how much data is in column A

With Worksheets("sheet1")
set rng = .Range(.cells(1,1),.cells(1,1).End(xldown))
End With
Userform1.Listbox1.RowSource = rng.Address(external:=True)

in your case, it was assumed the plant rows would not necessarily be the
same for each sheet/area combination, but that there would be no empty rows.
So in one area, there might be 5 rows of choices and in another 10 rows of
choices. Also, the assumption was that the same list of plants would not be
provided for each area. (just like every sheet did not have 4 areas, so
presenting a choice of 4 would be inappropriate - present a list of what is
actually available).

This may not be the case. You may always provide 10 rows (although some
would be empty). In that case, the approach I provided would have problems.
That could be fixed, but I had to make my best guess.

--
Regards,
Tom Ogilvy

"mike" wrote in message
...
Forgive me , i see the word dynamic alot in programs and
code..can anyone tell what it means in terms of coding or
vba language? Such as 'I set it up to dynamically
load....'

thanks...



Reply
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
meaning of E in y=3E-.05x^3 Garland Charts and Charting in Excel 2 April 4th 23 12:44 PM
Can anyone tell me the meaning of 'xlsx'? Wayne Excel Discussion (Misc queries) 2 August 3rd 09 06:42 AM
what is the meaning of <? bitwhite Excel Worksheet Functions 3 July 13th 09 04:02 PM
Formula Meaning Bevatron Excel Discussion (Misc queries) 17 January 10th 06 06:32 PM
meaning of ######### dick Excel Discussion (Misc queries) 2 January 10th 06 01:28 PM


All times are GMT +1. The time now is 11:56 PM.

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"