Hi @MayankBargali-MSFT ,
I have the below JSON as input to Created CSV table step:
[
{
"Posting Date": "31/08/2024",
"Reference ID": "1",
"Transaction Type": "INVOICE",
"Transaction Name": "Sale",
"Invoice Status": "sent",
"Item Type": "Premium",
"Client AL ID": "AC000014882",
"Client Internal ID": "573",
"Client External ID": "",
"Client Last Name": "OS Shi",
"Client First Name": "Norithn",
"NDIS Number": "",
"Client Custom 1": "",
"Client Custom 2": "",
"Debtor Al Care ID": "AC000014882",
"Debtor Internal ID": "573",
"Debtor External ID": "",
"Debtor Last Name": "OShield",
"Debtor First Name": "Norithn",
"Debtor Address": "1030 Mountain Creek QLD",
"Debtor Phone": "0334999932",
"Debtor Type": "",
"Debtor Relationship": "Self",
"Debtor Contact Custom 1": "",
"Debtor Contact Custom 2": "",
"Date": "1/08/2024",
"Funding Program": "Private- FFS",
"Funder Custom 1": "",
"Funder Custom 2": "",
"Description": "Meals - Client Contribution",
"Service Custom 1": "",
"Service Custom 2": "",
"Invoice Label 1": "",
"Invoice Label 2": "",
"Visit Start Time": "",
"Visit End Time": "",
"Employee AlayaCare ID": "",
"Employee Internal ID": "",
"Employee External ID": "",
"Employee Last Name": "",
"Employee First Name": "",
"Rate": "5",
"Rate ID": "PRIVFFS_9",
"Quantity": "10",
"Bill Duration": "",
"Amount": "50",
"Tax Name": "NA",
"Tax Number": "NA",
"Tax Amount": "0",
"Total": "50",
"Cancellation": "",
"Cost Centre": "[ Cost Centre not found ]",
"GL Number": "4160",
"GL Receivables": "8120",
"Client Group": "SUN - Zone 3",
"Bill Code": "MEALS_PRIV_FFS",
"Bill Code Description": "Meal Expense",
"Visit ID": "990",
"Visit Tag": "",
"Unit\r": "Per rate\r"
},
I am trying to concatenate GL Number and Cost Centre columns separated by hyphen under one column i.e. LedgerAccount as shown below, but it is not working:

The output is showing as follows:
LedgerAccount,TransDate
item()?['GL Number'] - item()?['Cost Centre'] ,item()?['Posting Date']
item()?['GL Number'] - item()?['Cost Centre'] ,item()?['Posting Date']
item()?['GL Number'] - item()?['Cost Centre'] ,item()?['Posting Date']
The values are not getting picked up as you can see. Can you please let me know what I am missing here ?
Thanks,