if value in A:A exist in combination with value in B:B then/ if combination doesn't exist

Barsoe

New Member
Joined
Mar 12, 2022
Messages
11
Office Version
  1. 365
Platform
  1. Windows
Hi

I've been struggling with this...

I have a dynamic worskheet "Budget" containing sales data.
Idea is to be able to store data with cost. Cost depend on the customer / supplier combination.


Eg. Customer (cuno) = 15 and Supplier (suno) = 494

Worksheet("Data")
Column A contains customer no (cuno)
Column B contains supplier no (suno)
Columns C, D, etc contain various data relating to this cuno/suno combination

to find the combination I've been using
VBA Code:
For Each Curng In wsdata.Range("A1:A1000")
    If Curng.Value = cuno And Curng.Offset(0, 1).Value = suno Then

If combination exist then overwrite data from "Budget"
if combination does not exist, create new line in "Data"

But I cannot get my head around how to determine if the combination doesn't exist without creating 1000 new lines

Any help appreciated
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
always helps to ask....
spent hours on this and just figured it out

VBA Code:
If WorksheetFunction.CountIfs(Curng, cuno, Surng, suno) = 0 Then

did the trick
 
Upvote 0

Forum statistics

Threads
1,214,897
Messages
6,122,141
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top