Link to home
Start Free TrialLog in
Avatar of Michael Vasilevsky
Michael VasilevskyFlag for United States of America

asked on

Schedule Display in MS Access Form

I'd like to create a display embedded in an Access form like the attached Excel. The current path I'm taking is embedding the Excel spreadsheet for format and then updating it with VBA. Is there another recommended approach?

Thanks!

MV
Schedule.xlsx
Avatar of crystal (strive4peace) - Microsoft MVP, Access
crystal (strive4peace) - Microsoft MVP, Access

Avatar of Michael Vasilevsky

ASKER

Thanks but I do want to display the data in the Access form, rather than force the user to go some place else. Is there a better approach than using embedded Excel?
If it's just for display purposes (i.e. sort of like a Dashboard), then create a table with columns named like your Row1 cells in the Excel sheet, and then use VBA to fill that sheet.

However, you could use the embedded method suggested by Crystal, and use VBA to fill that embedded worksheet. Often that's a better choice than trying to force Access to act like a spreadsheet.
ASKER CERTIFIED SOLUTION
Avatar of Michael Vasilevsky
Michael Vasilevsky
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Note that control is not certified to be compatible with Access (like nearly all ActiveX controls). It's also part of the OfficeWebComponents, which is no longer available. If you're going to deploy this to other users, you'll have some trouble with that one.
ActiveX spreadsheet control was what I was looking for