
Gerry Mullin
- Total activity 138
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 2
- Subscriptions 58
Comments
Recent activity by Gerry Mullin Sort by recent activity-
To clarify a few things above if they were not clear and give a little background if it helps. In the for loop we cycle through every field on the input pin. Obviously some fields could be boolean,...
-
You need to define the field Data in ConfigureFields of the Transform node. Here's a screenshot of the full node.
-
Have you written this in BrainScript? If you transition to a Transform node using Jython you can do the following. There is probably a more elegant way using dict but this will do what you said. No...
-
I made an attempt at solving this using Json and the eval() function. The first step is to create Json. The Json key contains a single line Python if statement that will evaluate to true or false i...
-
Yes, in the ConfigureFields, exact same as group sum. This link has more information on it.
-
I'm sorry, I completely misread it! Here's how you do you group string with a pipe delimiter: out1.GroupStringField = group.joinStrings(in1.FieldName,False,'|','')
-
You can't use the group sum feature in ProcessRecords, it belongs in ConfigureFields. In an Aggregate node and select Sum and your field from the drop down menu in Operations, then change the view ...
-
I would put a Transform node directly after your Do While Conditional that has some logic in it to determine if you want to proceed at all. Let's say you have performed some logic to see if a file ...
-
If I was doing this, I think I would clean up the field names outside the loop. My approach would be to dynamically create the columns by pivoting your field names table so that they would they wou...
-
I'm not sure if your TriPartyLEI_Status column is pasting right, your values look different to what I was expecting. It looks to me like you want to ignore all the Nulls on the status side. I split...