Challenge #432: Sequential Logic
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Tried an iterative macro with simple logic within, just takes the last record and iterative creates each new record.
Macro:
Workflow:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I go with the Interative Macro approach.
It is really funny that I just answered a fundamentally same question in the community yesterday.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Michael_Draper
Much simpler than mine.
Really nice and learned something. 😁
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
My solution.
Workflow Iterative Macro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you, @patrick_digan, for a neat challenge! This was definitely was a brain teaser.
I approached the solution by building an iterative macro. Thank you, @ggruccio and @ed_hayter, for iterative macro ideas!
My workflow:
Macro:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Felt a little 'dirty' with this solution but works 😊
iif([Name]='A' and isnull([Value]),[Row-3:Value]+[Row-2:Value]+[Row-1:Value],
iif([Name]='B' and isnull([Value]),[Row-4:Value]-[Row-3:Value],
iif([Name]='C' and isnull([Value]),[Row-5:Value]-[Row-4:Value]-[Row-3:Value]
,[Value])
)
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
here's my take
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Forced myself to use an iterative macro approach since I tend to avoid, good learning experience
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator