Can you specify what error Solver is giving you?
Rather than just give you the solution, let's talk a little about how to solve these.
1) Solver's default is to use the Newton Raphson method to find the roots to these kinds of equations. If you are unfamiliar with how the NR algorithm works, I would suggest you spend some time becoming familiar with it. Wikipedia has a good discussion, even if it tends to be a very technical. I like this page from the University of Utah that has a nice little applet for exploring the behavior of the NR algorithm with several different problems.
2) One of the first things I usually do with a problem like this is create a table of values to show C as a function of x. Maybe something like (comma delimited):
B,84
x,C
1,=A4*ln(A4/$B$1)
2,copy of B4
5,copy of B4
10,copy of B4
20,copy of B4
and so on
Then plot on a scatter plot. Then I can observe the behavior of the function and graphically visualize what it is doing. Do this for several values of B to see how B effects the function.
3) A most useful part of doing part 2 is that, once I have an overall picture of how this function behaves, it becomes easier to select an initial guess for x (the tutorial above should have shown how important initial guess is to the NR algorithm). This function is fairly simple, I would expect that Solver should have no problem finding the solution once you give it a suitable initial guess.
Bookmarks