
Daniel Rempel
- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Activity overview
Latest activity by Daniel Rempel-
Daniel Rempel commented,
Thanks Gerry. And that would also be done in the ConfigureFields node of an Aggregate node?Is there somewhere some more in-depth documentation that I'm missing? Where would one find this stuff by t...
-
Daniel Rempel commented,
Thanks Gerry. I'm not talking about groupSum but groupString. This macro would take all the string values in a field for the group being aggregated and concatenate them into a single string field f...
-
Daniel Rempel created a post,
How to replicate groupString macro in the new python-based Transform or Aggregate nodes
Hello, I used LAE for years before switching to Data360 Analyze. Just about the only thing I miss are is the groupString macro from the old Agg Ex node. I feel like this should be possible using th...
-
Daniel Rempel commented,
Is it possible in any way to modify which nodes are included in favorites? This would be a phenomenally useful feature.Perhaps currently would there be a way by editing a config file somewhere?
-
Daniel Rempel commented,
I have duplicate records of the same transaction, and want to preserve the most recent one. How can I do that?
-
Daniel Rempel commented,
Using the Transform node to manipulate field names To replace spaces in all field names: ConfigureFields: for field in fields: out1[field.replace(" ","_")] = in1[field] Although frankly I'm a li...
-
Daniel Rempel commented,
Hi, I've been playing around with this some more and was able to accomplish this with a Transform node with the following lines in the Configure Fields property: for field in fields: out1[field....
-
Daniel Rempel commented,
Excellent thank you!
-
Daniel Rempel commented,
I have a dataset where all the field names contain spaces. Rather than entering a new name for each field, could I somehow use python replace(" ","_") to change all the spaces in all the field name...