Like @Dennis_Mabrey pointed, if you have multiple I2C devices that use the same address, you should get an I2C Multiplexer.
The I2C Multiplexer i use is: TCA9548A
You can connect up to 8 I2C devices to the TCA9548A. Then my in Arduino code, i tell the TCA9548A which device to read or write by writing a code that looks like this:
TCA9548A.FocusOnThisDevice(I2cDevice1)
Data = TCA9548A.Read()
TCA9548A.FocusOnThisDevice(I2cDevice2)
Data 2 = TCA9548A.Read()
TCA9548A.FocusOnThisDevice(I2cDevice3)
Data 3 = TCA9548A.Read()
The above code is just pseudo code. But my point is to show you how easy it is to use the TCA9548A to switch between multiple I2C devices that have the same name.