Hi all
I have a report that is run at regular intervals, when it is run I need to comment on the findings, then at the next run I want to pull across the identical comments for the same previous finding.
The column structure is as follows for when it is first run on Monday
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Domain[/TD]
[TD]Issues[/TD]
[TD]Comment[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Something is wrong[/TD]
[TD]No its not[/TD]
[/TR]
</tbody>[/TABLE]
Next when its run on Friday
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Domain[/TD]
[TD]Issues[/TD]
[TD]Comment[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Something is wrong[/TD]
[TD]
[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Form is missing item 2[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Form2[/TD]
[TD]Form is not complete[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So you can see that I have two new records between Monday and Friday runs but the original record from Monday is missing the comment.
I have had some success with Index/match on this but it seems to go wrong if the records don't link up or something. Key point here are that 'Domain' and 'Issues' columns are to be considered key variable as the same comment might exist for multiple domains.
Hope you can help.
I have a report that is run at regular intervals, when it is run I need to comment on the findings, then at the next run I want to pull across the identical comments for the same previous finding.
The column structure is as follows for when it is first run on Monday
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Domain[/TD]
[TD]Issues[/TD]
[TD]Comment[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Something is wrong[/TD]
[TD]No its not[/TD]
[/TR]
</tbody>[/TABLE]
Next when its run on Friday
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Domain[/TD]
[TD]Issues[/TD]
[TD]Comment[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Something is wrong[/TD]
[TD]
[/TD]
[/TR]
[TR]
[TD]Form1[/TD]
[TD]Form is missing item 2[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Form2[/TD]
[TD]Form is not complete[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So you can see that I have two new records between Monday and Friday runs but the original record from Monday is missing the comment.
I have had some success with Index/match on this but it seems to go wrong if the records don't link up or something. Key point here are that 'Domain' and 'Issues' columns are to be considered key variable as the same comment might exist for multiple domains.
Hope you can help.