Hi
As per my understanding, you've create an object like
$myobject = [PSCustomObject]@{
Title= 'Whatever'
InternalName = 'this'
Id = 12345
}
Do you want to add it to the output not in a table, but still in a line to keep the format, like this
$fields | Select-Object -Property Title,InternalName,Id; $myobject | Select-Object -Property Title,InternalName,Id
Best Regards
Ian
Please remember to "Accept Answer" and upvote if the reply is helpful.