I want to make capacitor value C1=C2=C3 and change it at once.
I know the .STEP PARAM command, but it needs at least two values.
I want to set all values equal, and change it simultaneously.
Like this. If I do set C=10u, All the capacitor's size is set to 10u. Is there any command or method to realize this?

.paramsets the value of the parameters (the ones you have enclosed in the curly braces), while.stepsteps between some values for a parameter. The.stepcomand doesn't need to have a.paramdefined elsewhere, that's why it works to have it as standlone. But any value that uses parameters enclosed in curly braces needs to have that parameter defined somewhere. If there is no.stepcommand then a.parammust be used. – a concerned citizen Jun 08 '21 at 22:33