I have a pretty simple formula:$$y=x+7\lceil\frac x {1113}\rceil ,$$but I do not know how to solve it for $x$.
For example, if $x$ is $5520$, $y$ will be $$5520+7\lceil\frac {5520} {1113}\rceil=5555 .$$Giving $5555$, I would like to have a formula returning $5520$.
Since the ceiling function is non-decreasing, and $x \mapsto x$ is strictly increasing, the function $f(x) = x+7\lceil\frac x {1113}\rceil$ is strictly increasing, hence it is injective.
However, it is not surjective, for example $f(0) = 0$, and for $x > 0$ we have$f(x) > 7$, hence $(0, 7]$ is not in the range of $f$.
In general, if $x = 1113n+\theta$, with $n \in \mathbb{Z}$, $\theta \in (0,1113]$, we have $f(x) = f(1113n+ \theta) = 1113n + \theta+ 7n +7 = 1120 n+7 +\theta$. Since $f(1113n) = 1120n$, we see that $\operatorname{image} f = \left( \cup_{ n \in \mathbb{Z}} (1120n, 1120n+7] \right)^c$.
If $y \in E$, the inverse can be computed by setting $y = f(x)=f(1113n+\theta)$, with $\theta \in (0,1113]$. This gives the equation $ y=1120n+7+\theta$. This gives $\frac{y-7}{1120} = n + \frac{\theta}{1120}$, which gives $n = \lceil \frac{y-7}{1120} \rceil -1$ and $\theta = 1120(\frac{y-7}{1120}-\lceil \frac{y-7}{1120} \rceil +1)$, from which we get $x= y- 7 \lceil \frac{y-7}{1120} \rceil$.
Note: Erick made the observation that since $y \in E$, $\lceil \frac{y-7}{1120} \rceil = \lceil \frac{y}{1120} \rceil$, so the formula can be simplified (and clearly agrees with Erick's answer) to $x= y- 7 \lceil \frac{y}{1120} \rceil$.