Forum Discussion
Preston_Cole
Mar 14, 2024Copper Contributor
Am I doing something wrong?
Hi all I am clearly missing something obvious. I have two CSV files. One with a list of 'Project names' One with a list of 'partial' group names. I need to make an AzureAD group name based o...
diecknet
Mar 14, 2024Iron Contributor
Preston_Cole Do your CSV files really look like that? I mean just one column for each file? If they do, then the problem is, that in your loop you specify properties (=column names) that don't exist in your CSV files.
For example
$project.ProjectName
would refer to the value of the row "ProjectName" in your CSV of the current object.
Preston_Cole
Mar 14, 2024Copper Contributor
Thanks for the pointer! The headings were slightly wrong, I had Project.Name as a heading!
You helped me look again.
THANKS!!
You helped me look again.
THANKS!!
- diecknetMar 14, 2024Iron ContributorAwesome! Glad to help 🙂