Hi Everyone,
I have the Initialize variable content, the content has a title, but I would like to skip the title, studying previous Subject reference as follows website, but I don't know how to use the expression with "Skip" function, please give me any advise.
https://powerusers.microsoft.com/t5/Flow-Cookbook/Read-tab-delimited-and-write-records/m-p/246459/hi...
The Initialize variable content with title, how come to avoid it?
[
{
"Physical properties": "Physical properties:",
"2-102": "2-102",
"2-103": "2-103",
"2-104": "2-104",
"2-105": "2-105",
"2-106": "2-106",
"2-107": "2-107",
"2-108": "2-108"
},
{
"Physical properties": "Weight",
"2-102": ".+5%.- 5% ",
"2-103": ".+5%.- 5% ",
"2-104": ".+5%.- 5% ",
"2-105": ".+5%.- 5% ",
"2-106": ".+5%.- 5% ",
"2-107": ".+5%.- 5% ",
"2-108": ".+5%.- 5% "
},
{
"Physical properties": "Height",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Count",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Count1",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
},
{
"Physical properties": "Teat AB",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Tester ABD",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Tester 127632",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
},
{
"Physical properties": "ID name 29321",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
}
]
I just only want to display the below result, Is it possible to do it?
[
{
"Physical properties": "Height",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Count",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Count1",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
},
{
"Physical properties": "Teat AB",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Tester ABD",
"2-102": "25 N",
"2-103": "35 N",
"2-104": "45 N",
"2-105": " 40 N",
"2-106": " 45 N",
"2-107": " 45 N",
"2-108": "12 N"
},
{
"Physical properties": "Tester 127632",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
},
{
"Physical properties": "ID name 29321",
"2-102": "500 N",
"2-103": "500 N",
"2-104": "667 N",
"2-105": " 667 N",
"2-106": " 667 N",
"2-107": " 667 N",
"2-108": " 220 N"
}
]
Regards,
ilu989