Data validation from multiple sheets

feroz_bilal

New Member
Joined
Jul 3, 2015
Messages
27
IN SHEET 1- DAILY SALES RECORD
IN SHEET 2- ALL TSHIRT SKU'S
IN SHEET 3- ALL JEANS SKU'S

SHEET 1-

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]DATE[/TD]
[TD]SKU[/TD]
[TD]COLOR[/TD]
[TD]QTY[/TD]
[TD]PRICE[/TD]
[TD]PROFIT[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


SHEET 2 AND 3-
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]SKU[/TD]
[TD]COLOR[/TD]
[TD]PRICE[/TD]
[TD]SELLING PRICE[/TD]
[TD]COMMISSION[/TD]
[TD]SHIPPING[/TD]
[TD]VAT @ 5%[/TD]
[TD]PROFIT[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


Now WHAT I WANT IS:
1. WHEN I PUT JUST THE SKU IN SHEET 1- COLOR,TODAYS DATE, QTY=1(IF NOT ENTERED MANUALLY), PRICE AND PROFIT SHOULD COME AUTOMATICALLY


2. FETCHING OF THE SKU'S WILL BE FROM SHEET 2 AND SHEET 3(BOTH)
[REMEMBER SKUS,COMMISSION,SHIPPING,PRICE,COLOR,SELLING PRICE WILL BE DIFFERENT ON BOTH THE SHEETS]


NOTE:- IN SHEET 2 AND 3 I WILL ENTER THE DATA MANUALLY, I JUST WANT THE SHEET 1 TO BE FILLED AUTOMATICALLY WHEN WHEN SKU IS ENTERED
 
Last edited:

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hello,
This is a common task in MS Excel, but you can't use two different data sources to retrieve your prices, this will cause data inconsistency.
Regards.
 
Upvote 0
It's a VBA Project (VBA Stands for Visual basic for Applications) and the application here is MS EXCEL.
In the workbook, there is a bunch of macros,and a Userform.
I believe you need to learn the basics of VBA for Excel to do so, it's a very easy language to learn, there is thousands of tutos in the internet, and the good thing of learning programming VBA is that it opens doors to programming third party software too and go further then.

here is a good link to get started: Excel VBA Tutorial - Easy Excel Macros

Regards.
Karim
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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