Please note that in general, it is better to post example data / code as text instead of image - it's also more likely that you'll get a helpful answer then.
Regarding the Q, apply doesn't work in-place, you need to re-assign the returned series; Energy['Energy Supply'] = Energy['Energy Supply'].apply(lambda x: x*(10**6)).
You have to add the = operator. DataFrames are not mutable like lists, therefore you have to store the value in the column: Energy['Energy Supply'] = ....
Energy['Energy Supply'] = Energy['Energy Supply'].apply(lambda x: x*(10**6)).