So in my Powershell script I have 2 variables getting multiplied by each other, but there is one problem, Powershell can't tell that I want to multiply the variables by each other. The script is below:
$answer = $a*$equation
The $a variable is 7.
The $equation variable is 365*675/54
So what I want the script to do is 7*365*675/54 and set the answer to the $answer variable.
When I debug the script it says that the problem is in the * symbol. Can anyone help here?