I’m trying to create a Design Profile in a profile view. I have all the information to specify where it needs to be created, but I’m getting a list error that tells me that my PVI list count needs to be 2 or greater. My start point comes in as 0 list and my end point comes in as 1 list. How do I adjust this to meet the requirement?
Hi @UBDesign,
The input is currently a list of two lists, with each list having one value. So the node is trying to create two separate profiles with one PVI each, hence the issue. A few options:
- Use
List.Join
instead ofList Create
- Flatten with
List.Flatten
1 Like
Thanks Zach I’ll give it a try.