Hi Thbang,
Im trying to disply a list of all users's comments,  so Im getting something like this :
 
Comments 1 
User1, Date, Time
Comments 1
User1, Date, Time
 
Comments 2 
User2, Date, Time
Comments 2
User2, Date, Time
 
So as you can see comments from users are duplicated, Im supposed to get something like this :
 
Comments 1 
User1, Date, Time
 
 
Comments 2 
User2, Date, Time
 
Hope I made it clear, and thank you for your help 
 
 
                
     
                                    
            A common reason you might get duplicate entries is you are using form states and both the base state and the current state are writing comments.  Remember, the rules in a base state are always executed (kind of like inheritance) when used in a subsequent state.
                
     
                                    
            DavidL,
 
Im writing the rules on seprate form states but not on the base state.
 
Thanks