I have this IF statement I want to port into an excell spread sheet but I'm not sure how(I'm a C/VB programmer not a excel script kiddie) and I'm too lazy to install Visual Studio on my laptop to create this program in C#
IF B6 <= 99.99
{
(B3+B4) - (((B1+B2)+((B3+B4)*0.029) +0.3) + (B3+B4) *0.05)
}
IF B6 > 99.99 AND <= $1499.99
{
((B3 + B4) - 100) *0.025 + 5
}
If B6 > 1499.99
{
((B3 + B4) - 1500) *0.015 + 40
}
Any suggestions?
			
			IF B6 <= 99.99
{
(B3+B4) - (((B1+B2)+((B3+B4)*0.029) +0.3) + (B3+B4) *0.05)
}
IF B6 > 99.99 AND <= $1499.99
{
((B3 + B4) - 100) *0.025 + 5
}
If B6 > 1499.99
{
((B3 + B4) - 1500) *0.015 + 40
}
Any suggestions?
				
		
			