So you want the layer to constantly rotate, but speed up and slow by by the multiplier?
Try this:
effect("Slider Control")("Slider")*thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider")*time
time will keep the layer rotating, but multiplying it by the audio amplitube with a slider control to make the values larger should do the trick.
Alternatively:
(effect("Slider Control")("Slider")*thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider"))+time
Has time act to constantly rotate the solid, while additional rotation is provided by the audio amplitude.
I tried out both the first option seemed smoother.