aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/AbstractTool.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/PriceListTools/AbstractTool.cs')
-rw-r--r--src/PriceListTools/AbstractTool.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/PriceListTools/AbstractTool.cs b/src/PriceListTools/AbstractTool.cs
index 256be06..f312e95 100644
--- a/src/PriceListTools/AbstractTool.cs
+++ b/src/PriceListTools/AbstractTool.cs
@@ -135,7 +135,6 @@ namespace RehauSku.PriceListTools
protected int? GetPositionRow(Range range, string sku, string group)
{
Range found = range.Find(sku);
- string foundGroupValue;
if (found == null)
{
@@ -146,9 +145,11 @@ namespace RehauSku.PriceListTools
while (true)
{
- foundGroupValue = TargetFile.Sheet.Cells[found.Row, TargetFile.GroupCell.Column].Value2.ToString();
+ Range groupCell = TargetFile.Sheet.Cells[found.Row, TargetFile.GroupCell.Column];
- if (string.IsNullOrEmpty(group) || group.Equals(foundGroupValue))
+ if (string.IsNullOrEmpty(group) ||
+ string.IsNullOrEmpty(groupCell.Value2.ToString()) ||
+ group.Equals(groupCell.Value2.ToString()))
{
return found.Row;
}