So this might be complicated but I am trying to find the proper command . I need the possible solutions for 
 
119< 5 x1 + 10 x2 + 7 x3 + 5.2 x4  + 6.7 x5 <120
with 
 
x1, x2, x3, x4, x5 ∈ [1 ..5]
I already tried
 
NSolve [{
  119< 5 x1 + 10 x2 + 7 x3 + 5.2 x4  + 6.7 x5 <120,
  Element[ {x1, x2, x3, x4, x5}, Point @ { {0},{1},{2},{3},{4} } ] }, { x1, x2, x3, x4, x5 }]
But somehow it doesn't compute? Is there another maybe more elegant way?