Hi Peter, The way path analysis works is by looking at the transactions first and then sorts each each event by their sequence order. In your example the NEW, EXISTING and CANCELLED events are all in different transacations (200, 201, 202) and as such represent different paths. You may have noticed that all three events are on the left side since they start off a new path. In order to have them appear within one path (and split into exisiting and cancelled customers as you describe) you would need to represent these within the same transaction or by grouping your data by the paths you describe. Example: Time Sequence Event Weight 01/01/2015 200 NEW 0 01/01/2015 200 EXISTING 180 02/01/2015 201 NEW 0 02/01/2015 201 CANCELLED 20 Note, that the first event (NEW) starts with 0 count since child sequences carry the actual weight. The example only shows the first two sequences but hope this gets you started. Cheers, Falko
... View more