Greetings. I have a CSV of names with the fields NameFirst, NameLast, NameMiddle, Rank, EmailAddress. I need to change the display name for each of those to this specific format:
NameLast, NameFirst NameMiddle Rank
The closest I've gotten is using
gam csv justme.csv gam update user ~MasterEmailAddress displayname '~NameLast', '~NameFirst' '~NameMiddle' '~Rank'
but I get the following error:
Command: /home/admin/bin/gam7/gam csv users.csv gam update user ~EmailAddress displayname >>>"~NameLast,"<<< ~NameFirst ~NameMiddle ~Rank
ERROR: Header "NameLast," not found in CSV headers of ",NameLast,NameFirst,NameMiddle,Rank,EmailAddress".
Help: Syntax in file /home/admin/bin/gam7/GamCommands.txt
Help: Documentation is at
https://github.com/GAM-team/GAM/wikiI do see that it's getting hung up on the comma, including it as part of the field despite my desires. I don't see anything in the documentation that specifically addresses this, though. Here's hoping you can assist. Thanks.
—Isaac