You can set the bin width, but I don't think there is any way you can customize where the bin limits begin and end. The problem here is that the values that fall in the second to last bin would be written [90, 100), and the last bin would be [100,110). The upper limit is non-inclusive, and there's no way to change that.
An easy, klugey fix would be to subtract a really, really small number off your data points so that the 100 becomes 99.9999999 or something similar. Here's an example where I only subtracted off of the values equal to 100 in a new column I called X_modified. You see the histogram for the original column X (contains random uniform(0,100) values rounded to integers).
Originally, the Quantiles table for X_modified showed the max value = 99.99999999. I addressed that by reducing the the number of digits in the format for that column from 12 to 6. You can change the format by double clicking on the column.
-- Cameron Willden