Check Row by Row
- 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
I have following dataset
Input :
NA | AMT | Brackets |
CA | 1400.00 | 1400.00 |
CA | -1400.00 | (1400.00) |
4 | 1400.00 | 1400.00 |
Expected Output:
Rules:
1. positive and Negative Same Amount should be matched
2. String and number should be Matched, string and string should not be matched, same with number
in this example string is CA it be can be anything NA, RS etc same with number
NA | AMT | Brackets | match |
CA | 1400.00 | 1400.00 | |
CA | -1400.00 | (1400.00) | M |
04 | 1400.00 | 1400.00 | M |
Solved! Go to Solution.
- Labels:
- Data Investigation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Have you tried creating conditioning labels for the rules you want to match and then join then afterwards?
Like, simplify the data with new formula fields, "is that string or number", is that "negative or positive", "Are values same amount"... then join based on the rules you want, reducing the number of unique values the join tool deal with.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
can you show me how it is done?
I am not aware of conditional labels
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I mean, using formula tool you can create labels
IF [AMT] >= 0 THEN "Positive Value" ELSE "Negative Value"
IF [AMT] = [Brackets] THEN "Value Match" ELSE "Different Values"
Things like that, matching with your rules
Then on Join tool you join by those labels
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I tried your logic it's not working
IF [AMT] = [Brackets] THEN "Value Match" ELSE "Different Values"
by default this value will be in different, How can we join on same dataset?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Can you send the sample data and a detailed information on how do you want to match then?
I can create a workflow for you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have already attached the sample data
Please check that
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I saw it, I just felt you could have more information about that
About the rules too, it is a bit confusing, if you clarify those points I can make a workflow for you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
NA | AMT | Brackets | String/Number | |
CA | 1400.00 | 1400.00 | String | |
CA | -1400.00 | (1400.00) | String | M |
4 | 1400.00 | 1400.00 | Number | M |
I have created additional column using formula tool
How can i match string and number when amount is same
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Points are simple
Amount should be same positive and negative 1400 and -1400 and
NA column should have one string and other number
then those should be marked as "M"
