Multiple MCP4725 D/A

Hello, I have a project, I need 3 D/A converters on I2C. Looking at MCP3725 https://learn.sparkfun.com/tutorials/mcp4725-digital-to-analog-converter-hookup-guide
I saw the address bit A0 which can be used to implement 2 such DAcs.
But, I wonder, if someone takes out of pcb module (ie with a cable) pin A0, can he use it as "chip select"?
A rough demo could be :
pin2 goes to A0 module1
pin3 goes to A0 module2
pin4 goes to A0 module3

pinmode(2, OUTPUT);
pinmode(3, OUTPUT);
pinmode(4, OUTPUT);
digitalWrite(2, LOW);
digitalWrite(3, HIGH);
digitalWrite(4, HIGH);

wire.begin(address for LOW); // every module has sameaddress, but only module 1 is LOW
...
wire.end(address for LOW);

digitalWrite(2, HIGH);
digitalWrite(3, LOW);
digitalWrite(4, HIGH);
wire.begin(address for LOW); // every module has sameaddress, but NOW only module 2 is LOW
...
wire.end(address for LOW);

and so on.
Can it be done, or the bus "sees" 2 devices with same address and (no matter if none of them is used) it is troubled?
(pls ignore minor syntax errors)

That should work. 2 I/O pins can select 4 chips..

perhaps it is not clear, or it is very specific.

Let me put it in another way :
We have a wire bus. On it, there are attached ....5 devices. 2 of them have the same address.
Is there any conflict as long as the address of the 2 devices is not used?

In other words :

Wire.end();
Wire.beginTransmission(addr1);
..

Is there any problem in bus if there are (more than one) devices with the same between them addr ie addr7 (addr7 != addr1)?
?

Go for it.. will work.
If more than 3 units, consider removing a some pull_up's (total R 2k5 .. 10k)

demkat1:
perhaps it is not clear, or it is very specific.

Is there any problem in bus if there are (more than one) devices with the same between them addr ie addr7 (addr7 != addr1)?
?

Should not be any conflict if you are addressing devices with unique number.

Check the datasheet for the latching behavior of A0 - sometimes you can use these address pins like a chip select... other times, the address is latched at startup or something. Finding this information in the datasheet can be difficult though, as you're looking for one or two sentences buried in what's usually a fairly long document.