How do you get your data to put into CSV format for new user creation?
I want to go from some type of data input form where a manager enters first name, last name, department, phone#, etc. Then that data will be 'processed' to find appropriate values for other fields. Example:
These values are entered:
From that information I want to end up with:
Does that make sense? I have a number of questions I want to ask a manager and I want a way take their responses, evaluate them and create values which will ultimately end up looking like:
First | Last | username | title | department | company | emailaddress | homeDirectory | profilePath |
Pat | Smith | smithj | Accountant | Accounting | Alpha | smithp@alpha.com | \\alpha\accounting\staff\smithp | \\alpha\profiles\smithp |
Lee | Jones | jonesl | Director | HR | Delta | jonesl@delta.com | \\delta\hr\staff\jonesl | \\delta\profiles\jonesl |
I'm looking to see if anyone uses some type of form to gather this data from managers, and what they use. And second to see if anyone then has some way to process the data to dump it into a csv file?