+ Reply to Thread
Results 1 to 5 of 5

Using Excel to create a customizable catalog

  1. #1
    Registered User
    Join Date
    01-21-2005
    Posts
    2

    Using Excel to create a customizable catalog

    I am attempting to create a type of customizable catalog using Excel. This idea is to have one worksheet in the workbook contain a standard set of info for all products, including a picture of the product. Another worksheet would be the "selection" page where a user puts an "x" next to the model number they want in their customized catalog. The third worksheet would contain the customized catalog entries.

    I have been able to get all the data info to assemble correctly on the third worksheet using the IF function (data like model #, price, availability, description etc.) but the master data also contains a picture of the product. Try as I might, I cannot find a way to get the image to move over with all the other data.

    Is there a way (functions or VBA) that I can keep the image from the master worksheet with all the data when it copies over to the customized catalog page ?

    I've probably described this in a very confusing way, but any thoughts would be appreciated.

    THX -

    Eaglestl

  2. #2
    Registered User
    Join Date
    06-21-2004
    Location
    Phoenix, Az
    Posts
    30

    Lightbulb

    Here is a sub and function that you can use to transfer pictures from one page
    to a specified cell on another page. Paste them into a new or existing code module.

    Sub TestIt()
    Call TransferPicture("picProduct1", "DataAndPics", "CustomCatalog", "D6")
    End Sub

    Function TransferPicture(ByVal PicName As String, ByVal FromPage As String, ByVal ToPage As String, ByVal TargetCell As String)

    Application.ScreenUpdating = False
    Sheets(FromPage).Activate
    Sheets(FromPage).Shapes(PicName).Select
    Selection.Copy
    Sheets(ToPage).Select
    Range(TargetCell).Select
    ActiveSheet.Paste
    Application.ScreenUpdating = True

    End Function

  3. #3
    Registered User
    Join Date
    01-21-2005
    Posts
    2

    Customizable Catalog

    Great - I'll give it a try.

    Thanks,

    Eagestl

  4. #4
    Registered User
    Join Date
    06-21-2004
    Location
    Phoenix, Az
    Posts
    30
    Let me know how it turns out.

  5. #5
    Registered User
    Join Date
    06-25-2013
    Location
    us
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Using Excel to create a customizable catalog

    Quote Originally Posted by eaglestl View Post
    I am attempting to create a type of customizable catalog using Excel. This idea is to have one worksheet in the workbook contain a standard set of info for all products, including a picture of the product. Another worksheet would be the "selection" page where a user puts an "x" next to the model number they want in their customized catalog. The third worksheet would contain the customized catalog entries.

    I have been able to get all the data info to assemble correctly on the third worksheet using the IF function (data like model #, price, availability, description etc.) but the master data also contains a picture of the product. Try as I might, I cannot find a way to get the image to move over with all the other data.

    Is there a way (functions or VBA) that I can keep the image from the master worksheet with all the data when it copies over to the customized catalog page ?

    I've probably described this in a very confusing way, but any thoughts would be appreciated.

    well, I know such one tutorial for you to learn: http://www.xflip.com/tutorials/creat...rom-excel.html

    THX -

    Eaglestl
    Well, great topic, our company would also try the solution, thanks for sharing!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1