Make a copy to edit the 2 red fields on sheet1: https://docs.google.com/spreadsheets/d/1VPInJPxegaowYUym-vGQ6_so07gPFI1NnQ-v4O-f7mM
Was trying to find one and couldn't find an updated one. Ruby437 had a CP google sheet but needs to be updated. I didn't do any of the time to level calculations he did, just something quick and simple I needed to get exact xp needed between current and wanted XP and got tired of doing it manually and thought someone else might find it useful.
Using the spreadsheet from: http://esoacademy.com/champion-point-mechanics/#full-champion-point-xp-table for CP XP data
/script for i=1,1000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end
/script for i=1000,2000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end
/script for i=2000,3000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end
/script for i=3000,3599 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end

/script d(GetNumChampionXPInChampionPoint(1234))
you can write this into the ingame chat to get the CP needed for that rank
(one by one)/script for i=1,1000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end/script for i=1000,2000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end/script for i=2000,3000 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end/script for i=3000,3599 do d(i.." = "..GetNumChampionXPInChampionPoint(i)) end
output looks like this:
Or if you just wanna know one specific level (e.g. the XP needed to level up CP 1234 to CP 1235):/script d(GetNumChampionXPInChampionPoint(1234))