I have two datasets : Here's the 1st, and Here's the 2nd.
My aim is to merge these datas, removing the 1st or 2nd "JN" column since it's recurring, and find the ratio of "Freq" between these datas.
For each Row, I want to use this calculation :
=(100)-(100*(FreqBL/FreqB))
and place this new calculation to 4th column.
The new data should look like:
JN FreqBL FreqB Success Ratio
4 10 33 69.6969
But I don't know how to select all rows seperately and the necessary code for the calculation.
Thanks