Thanks for your reply.
Yes, I want V(2) = 1/V(1), so that I want 6db to become -6dB and 10dB to become -10dB.
The reason I'm interested in doing this is because I am trying to simulate a filter that is a Laplace function (AC analysis), with the function being a product or division of other Laplace functions.
For instance if the pseudo-code looked like this
G1 = Laplace (s^2/ (s+3)^2) (can use E element to implement this)
G2 = Laplace (s+3))
I want to calculate
G3 = G1/G2
without having to use a single E element with one (potentially long) expression containing both G1 and G2's expressions in them. This makes debugging much more manageable (it's easier to make an error when typing in long expressions with "s" terms). Also, G1 may be used in another filter (e.g. G4), so being able to break the filter into smaller pieces in general would make things easier.
What I've done (and which worked) is to create a filter 1/G1 by typing in the Laplace formula ";aplace (( s^2/(s+3)^2 )^(-1))" in an E element , the output of which I can then cascade with other E elements to make a filter that is a product (or division of other filters). It's still not exactly what I want, because now I have to create separate G and 1/G "E" elements if I'm going to use them both in expressions, but it works for now.