• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Employee Database With Images

kadrleyn

Member
In the workbook, the employee information is entered into columns in the first sheet.On the other sheet,the recorded entries can be displayed in rows (vertically) in a column .

We added a listbox, textbox, spinbutton to the report sheet. When this page is active, the names of the employees are populated to listbox using vba codes :
"lrow = Sheets("Data").Range("B" & Rows.Count).End(xlUp).Row
ListBox1.List = Sheets("Data").Range("B2:B" & lrow).Value “


Example file can be downloaded here
 
Nice project ... however, the changing of the employee photo does not work as desired. Might want to take a look at that.
 
Back
Top