need some help to create, what I think is, a negative exponential curve. [....] when keying in 1 I need it to display 3.50 and when keying in 100000 for it to display 1.00.
looking for the ability to key in a number from 1 to 100000 in one cell (lets say A2) and display the results in cell B2
Yes, with only 2 data points, there are an infinite number of "curves", including a straight line.
But I suspect that you want the following in B2:
=GROWTH({3.5; 1}, {1;100000}, A2)
The GROWTH function derives the same values that the chart exponential trendline derives, despite a different form of an exponential formula. (*)
(Beware of regional syntax differences. You might write =GROWTH({3,5; 1}; {1; 100000}; A2) .)
(*) The linear regression (LOGEST) of the GROWTH formula y = b * m1^x is equal to the linear regression (LINEST) of the formula for the chart exponential trendline y = b * EXP(m2*x), where m2 = ln(m1), within the limitations of 64-bit binary floating-point.
This is demonstrated below.

Formulas:
B7: =GROWTH($B$2:$B$3, $A$2:$A$3, A7)
C7: =$B$12 * $A$12^A7
D7: =$C$15 * EXP($A$15*A7)
A12:B12: =LOGEST($B$2:$B$3, $A$2:$A$3) array-enter; press ctrl+shift+Enter
C12: =LN(A12)
A15:B15: =LINEST(LN($B$2:$B$3),$A$2:$A$3) array-enter; press ctrl+shift+Enter
C15: =EXP(B15)