richiwatts
Technical User
We currently use a filter to show if there is a line break in one cell and not the other. The problem we have is that some cells have 2 line breaks while the column beside it has 1
We need to identify rows that do not have the same amount of line breaks so we can fix them.
This is what we have now. Can anyone provide a query to that will only show rows that do not have the same amount of lime breaks
to select rows containing line breaks: :
[Target] Like "*" & Chr(10) & "*"
To show segments where there is a line break in target but not in source:
[Target] Like "*" & Chr(10) & "*" AND [Source] Not Like "*" &
Chr(10) & "*"
To show segments where there is a line break in source but not in target:
[Source] Like "*" & Chr(10) & "*" AND [Target] Not Like "*" &
Chr(10) & "*"
---------------------------
We need to identify rows that do not have the same amount of line breaks so we can fix them.
This is what we have now. Can anyone provide a query to that will only show rows that do not have the same amount of lime breaks
to select rows containing line breaks: :
[Target] Like "*" & Chr(10) & "*"
To show segments where there is a line break in target but not in source:
[Target] Like "*" & Chr(10) & "*" AND [Source] Not Like "*" &
Chr(10) & "*"
To show segments where there is a line break in source but not in target:
[Source] Like "*" & Chr(10) & "*" AND [Target] Not Like "*" &
Chr(10) & "*"
---------------------------