VBA help

first_rodeo

Active member
basically need code to find out if customers owe more than $1000

if they do it's displayed on another worksheet

Given a list of their bills and what they have paid thus far.

anyone that can help would be appreciated

ill trade for another assignment paper etc

View attachment 627177
 
I don't know how you code in Visual Basics, but in all coding languages here's what I've got:

-----

int purchase; //the purchase the customer makes (integer, or number value)

bool bThousand=false; //booleon (true or false) for if the price is >1000

if(purchase > 1000)

{

bThousand==true;

}

while(bThousand)

{

cout
 
tumblr_inline_mxp9kge3Dw1r6xens.gif
 
Back
Top