Ah, I just found the reason why the symbolic solve did not work for L4.
The reason is the angle you defined in degree. Primes symbolics does not know anything about units and so "deg" is treated as an unknown variable which makes solving symbolically quite difficult.
You can fix this by (re)defining the unit deg somewhere at the top of the sheet (at least in front of the first usage of "deg"):

Now the symbolics will also solve for L4 as fast as for the other variables.
Nonetheless I still think that using numeric methods should be used if all you look for is a numeric value.
A word of caution: You are using the "float" modifier in your symbolic evaluations. Please note that this does not only affect the display of the result but also the precision of the whole calculation.
Give it a try. After the definition of my function fun evaluate fun(L.4)= you will get a result a little different from zero. Now change "float, 6" to something like "float,26" and you will see that fun(L.4) now evaluates to zero!
Prime 9 file attached