Nrf24l01 multiple transmitter

Hello every one .
I have question , you may answer it no or yes.
I have 3 nrf24l01 . i want to make network between them.
Don’t you know how to send information to a specific address
/*pseudo code*/ byte address[][6]={"1Node","2Node","3Node"} radio.openWritingPipe(address[0]); data=somedata; radio.stopListening(); radio.write(&data ,sizeof(data));
i think when i am sending data all nrf are reciving it . can i send to exact nrf by exact address ? not to spread data to all nrfs?