Loading Excel Data into a Form

  • Thread starter Thread starter DLayne
  • Start date Start date
D

DLayne

We use a form created in Excel to analyze property tax assessmen
levels. This data consists of the line items of an income and expens
form that we have been keying in by hand. We have a software provide
who gives us a data base in Access that we can easily convert int
Excel format.

I would like to create a way to directly take the Excel data exporte
from Access and populate the property analysis forms. What is the bes
way to do that?

Excel Macro, VBA application or what?

Thanks for the assistance.

D. Layn
 
Userform textboxes (which I assume your using) do not have a property that
ties their values to particular worksheet cells, so, yes, you'll need a
macro to populate the userform.

TextBox1.Value = Range("A1").Value

etc.

--
Jim Rech
Excel MVP
|
| We use a form created in Excel to analyze property tax assessment
| levels. This data consists of the line items of an income and expense
| form that we have been keying in by hand. We have a software provider
| who gives us a data base in Access that we can easily convert into
| Excel format.
|
| I would like to create a way to directly take the Excel data exported
| from Access and populate the property analysis forms. What is the best
| way to do that?
|
| Excel Macro, VBA application or what?
|
| Thanks for the assistance.
|
| D. Layne
|
|
| --
| DLayne
| ------------------------------------------------------------------------
| DLayne's Profile:
http://www.excelforum.com/member.php?action=getinfo&userid=16047
| View this thread: http://www.excelforum.com/showthread.php?threadid=275064
|
 
Jim Rech said:
Userform textboxes (which I assume your using) do not have a property that
ties their values to particular worksheet cells, so, yes, you'll need a
macro to populate the userform.

By 'form' assumed the OP meant a formatted worksheet, in which case
there are many possibilities but worksheet functions such as VLOOKUP
are simplest.

Jamie.

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top