-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkypsa.csv
We can't make this file beautiful and searchable because it's too large.
2241 lines (2241 loc) · 763 KB
/
kypsa.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ResultNumber,Consent,Appeal,Trust,Usage,Likes,Dislikes,Reccomended,Q9.1,Q9.2,Q9.3,Q9.4,Q9.5,Q10.1,Q10.2,Q10.3,Q10.4,Q10.5,Q11.1,Q11.2,Q11.3,Q11.4,Q11.5,UserID,Start Date,Start Time,Finish Date,Finish Time,Average Time,Interface,Activity level,Agegroup,Children,Country,Deotype,DeoUser,Deofreq,Gender,Sweating,Benefit
1,1,3,4,4,It has a cooling sensation which is always a good feeling. It keeps you fresh no matter the weather so in a way it adjusts to the climate.,Dont dislike anything.,I wouldnt change anything.,5,5,5,5,5,1,1,1,1,1,7,7,6,7,6,5335624,06-08-2020,12:48,06-08-2020,12:53,28.08333333,mobile,Once a week,25 - 34 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It cares for my skin
2,1,3,3,3,It's having a picture,It's not that appealing,The way representation,5,4,4,3,5,3,1,2,1,4,7,5,4,4,6,7618528,06-08-2020,12:48,06-08-2020,12:53,26.08333333,mobile,3+ times a week,18 - 24 years,I don’t have any children,India,Roll-on,No,I rarely / never use deodorant,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
3,1,1,3,1,Nothing,sound unnatural. ,Na,4,2,2,1,2,2,2,2,5,2,4,5,5,1,4,6908089,06-08-2020,12:50,06-08-2020,12:54,22.08333333,mobile,Once a week,35 - 44 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
4,1,4,4,4,The cooling ingredients,N/a,N/a,3,4,4,5,5,1,1,1,1,1,5,7,7,7,7,8640140,06-08-2020,12:53,06-08-2020,13:02,49.08333333,desktop,Twice a week,25 - 34 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
5,1,5,5,5,Cooling sensation ,None,No I would not,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5335764,06-08-2020,12:54,06-08-2020,13:00,31.33333333,mobile,3+ times a week,35 - 44 years,Two,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
6,1,5,5,5,I love the ice cube encaps giving deodorant the extra coolness. The scenario is just made for me.,Nothing to dislike,No nothing to change,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,6879209,06-08-2020,13:02,06-08-2020,13:07,26.58333333,mobile,3+ times a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against wetness
7,1,4,4,4,The cooling effects of the product and giving fresh to the body,How hard to use the product,Nothing if the product is easy to use,1,5,5,5,5,5,1,1,1,1,1,7,7,7,7,8640668,06-08-2020,13:08,06-08-2020,13:19,54.5,desktop,3+ times a week,18 - 24 years,I don’t have children under the age of 18,Philippines,I don't use any,No,I rarely / never use deodorant,Female,Light sweater,I don't use any
8,1,5,3,5,In the car I always sweat so to be able to arrive at my destination or appointment feeling fresh & not having odour will give me confidence. A product that allows me to go on as normal without sweat worries would be great.,N/A but I would be concerned about price & whether it is cruelty free,"Maybe the ""Ice Cube Encaps"" part. It doesn't make me think of anti perspirant but nothing else",4,3,2,5,5,2,3,1,1,1,5,3,5,7,7,5362755,06-08-2020,13:15,06-08-2020,13:25,50,mobile,Never,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
9,1,5,4,5,"However hot and humid the environment maybe, but the deodorant would make you feel comfortable. This is very necessary and important for our daily lives. ",Depending upon the price this product would be marketed at. Otherwise all is well with the product. ,Nothing ,3,4,4,5,5,3,1,3,1,1,5,7,6,7,7,7719442,06-08-2020,13:17,06-08-2020,13:26,42.33333333,mobile,Once a week,65 years +,One,India,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
10,1,3,2,1,nothing,I don't need my armpits to be cooled - and I don't use an antiperserent,This just isnt for me.,3,1,3,1,4,3,5,3,5,3,1,1,1,1,6,8585656,06-08-2020,13:18,06-08-2020,13:21,16.58333333,desktop,Twice a week,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
11,1,5,4,5,How it releases cooling ingredients when it senses your body temperature and keeps you fresh,n/a,What happens when you are sick and hot?,4,4,5,5,5,2,2,2,1,1,4,6,7,7,6,5442731,06-08-2020,13:19,06-08-2020,13:25,28.75,desktop,Less often,35 - 44 years,Two,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
12,1,5,5,5,The on-demand cooling sensation ...when the product releases cooling ingredients activated by my body temperature.,n/a,n/a,2,5,5,5,5,2,1,1,1,1,3,7,7,7,7,5335208,06-08-2020,13:21,06-08-2020,13:32,54.75,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
13,1,5,4,5,The fact that it would cool me down based on when my body got hot,nothing ,nothing ,1,5,5,4,5,5,1,1,1,1,1,7,7,6,7,5431965,06-08-2020,13:25,06-08-2020,13:29,20.83333333,mobile,Less often,35 - 44 years,I don’t have any children,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Heavy sweater,
14,1,4,4,3,Future tech advantages ,Possible harmful ingredients ,not sure without knowing ingredients list,5,4,4,5,5,2,2,2,1,2,6,5,6,7,6,5337899,06-08-2020,13:34,06-08-2020,13:37,17.41666667,mobile,Twice a week,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
15,1,4,5,5,On the go sweat protection,None,None,5,5,5,5,5,4,1,1,1,1,6,7,7,7,6,7763498,06-08-2020,13:35,06-08-2020,13:43,35.75,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
16,1,5,5,5,This product is very new and unique which is specially designed for heavy sweaters.,This product would probably won't be affordable for most people who are in need of this unique product.,n/a,4,5,5,5,5,2,1,1,1,1,5,7,7,7,7,7618879,06-08-2020,13:36,06-08-2020,13:47,57.58333333,desktop,Less often,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
17,1,5,4,5,"The product promises an extra on-demand cooling sensation made especially for people living in places with hot and humid weather conditions. I so love the idea because the amount of cooling that the product will give will depend on one's body temperature, so you will get what your body really needs at the moment. ",There is nothing to dislike about this product.,Maybe the product should also be hypoallergenic so that it will also work or be suited for those with sensitive skin types.,4,4,4,5,5,2,1,1,1,1,4,7,7,7,7,8597079,06-08-2020,13:42,06-08-2020,13:57,80.27272727,desktop,Less often,45 - 54 years,One,Philippines,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
18,1,5,4,5,Sounds very suitable to the hot summers in Australia or situations where you are exercising. Would give you peace of mind. Sounds effective and very different to other products out there. Sounds like it would give you relief to your discomfort.,Sounds like it will probably have more chemicals in it to get this effect so I would wonder if it's bad for me,"Make it more natural or specify that it is safe, has been clinically tested etc",1,5,5,5,5,3,1,1,1,1,3,6,7,6,7,5337216,06-08-2020,13:57,06-08-2020,14:04,40.63636364,desktop,Twice a week,35 - 44 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
19,1,4,4,4,"The Problem of Balu is very much related to me and my city climate , so if this product can work for Balu , I think it will work for me too . I like in product development the factor of "" On Demand Cooling Sensation """,I don't think there is any thing to dislike as per description ., The only change is I would like if it could possible with natural ingredients .,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,7763988,06-08-2020,14:02,06-08-2020,14:17,74,desktop,3+ times a week,45 - 54 years,One,India,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
20,1,4,1,4,"I like potential the product has for keeping me cool and fresh, no matter what the climate. ",The word (Encaps) in the title is confusing. I do not understand where it fits with a product of this type.,"The name of the product, as pertaining to the word ""Encaps"", is something I would definitely change to something more descriptive, or enticing.",2,4,4,4,5,3,1,1,1,1,2,6,5,5,6,8595287,06-08-2020,14:06,06-08-2020,14:16,50.58333333,desktop,Twice a week,45 - 54 years,I don’t have any children,US,Stick,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
21,1,4,5,5,Looks really good,Nothing,Nothing,4,4,5,5,3,3,3,4,5,4,7,7,6,6,6,5341286,06-08-2020,14:37,06-08-2020,14:40,13.33333333,mobile,3+ times a week,35 - 44 years,I don’t have any children,UK,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
22,1,4,3,4,That can keep me come regardless of the climate ,I can’t say much since never tried it,N/a,5,4,5,4,4,3,1,1,1,1,7,5,6,6,7,6918747,06-08-2020,14:55,06-08-2020,17:01,684.3636364,mobile,Twice a week,35 - 44 years,Three,South Africa,Roll-on,No,I use it multiple times a day,Male,Light sweater,It prevents / controls against odour
23,1,5,4,5,I live in Florida and it is extremely hot and humid here most of the year. We only have a few cool days a year. A product that can keep me cool is something that sounds amazing.,I don't have enough information about the product to have anything I dislike about it. From the information given everything about thus product is likable.,Na,4,4,4,5,5,1,1,1,1,1,6,7,7,7,7,7618541,06-08-2020,15:04,06-08-2020,15:14,49.75,mobile,3+ times a week,45 - 54 years,One,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
24,1,5,2,5,"Various people have their own body sweating levels and it's impossible to give the same level of comfort by one product, to all those who use the product. This product claims to be the best at providing same level of comfort to all people using it which is making me a bit unbelievable about this product. If it actually works I'll buy it for sure.",To speak honestly there's nothing to dislike about this product. But it'll be great if the product is manufactured in various flavors of people's choice which will further increase the demand for the product.,Just that the product be available in various flavors would be great. Otherwise it's great.,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7831317,06-08-2020,15:16,06-08-2020,15:24,40.58333333,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,It cares for my skin
25,1,5,4,5,The fact that it will keep me cool and calm while keeping me fresh all day long.I think I am in love with it even before its available.,No comment,I would swap the current deodarent for that one.,3,4,3,5,5,2,1,1,1,1,2,6,3,6,6,5344890,06-08-2020,15:18,06-08-2020,15:24,34.18181818,mobile,Less often,35 - 44 years,One,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
26,,,,,,,,,,,,,,,,,,,,,,,4441030,06-08-2020,15:21,,,,desktop,,,,,,,,,,
27,1,5,5,5,It will be activated by my body temperature.,I dislike nothing,I would not change anything,3,5,4,5,5,1,1,1,1,1,7,7,7,7,7,5335181,06-08-2020,15:25,06-08-2020,15:32,34.81818182,desktop,3+ times a week,25 - 34 years,Three,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
28,1,4,3,4,as yout temperature increases you get hotter so your deodorant gives you a cooling sensation when needed,nothing at all,nothing really sounds good if it works,3,5,5,5,4,3,1,1,1,1,3,7,7,7,7,5335238,06-08-2020,15:26,06-08-2020,15:39,66,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against wetness
29,1,5,3,5,Slow release cooling,Nothing ,N/a,3,5,5,5,5,1,1,1,1,1,3,5,6,6,3,5342704,06-08-2020,15:26,06-08-2020,15:29,14.58333333,mobile,Twice a week,45 - 54 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
30,1,5,4,5,That is protects you from sweating,None,No,4,4,5,4,4,1,1,1,1,1,6,6,6,7,7,6893797,06-08-2020,15:27,06-08-2020,15:47,100.0833333,mobile,Few times a month,45 - 54 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
31,1,5,3,4,I like the fact that it has a cooling sensation which cools you down when you are feeling hot and makes you feel fresh. Everyone wants to feel fresh.,Nothing at this stage.,"No, this sounds good. Perhaps give us a glimpse into what scents will be available. I would love a fresh cucumber scent.",4,4,4,4,5,2,1,1,1,1,6,6,7,7,7,5353028,06-08-2020,15:28,06-08-2020,15:34,33.75,desktop,Never,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
32,1,4,4,4,It sounds very cooling,n/a,n/a,4,4,4,4,4,2,1,1,1,1,5,6,6,6,6,5333533,06-08-2020,15:28,06-08-2020,15:31,14,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
33,1,5,4,4,I like that the product is innovative. I like that it is refreshing and cooling. ,I don't like that I'm not sure what the product looks like. ,N/A,4,5,4,5,5,2,1,1,1,1,5,7,6,7,7,5353248,06-08-2020,15:28,06-08-2020,15:35,32.66666667,desktop,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
34,1,5,4,4,"That it activates when required, and you don't need to chose a different product depending on the temp",Don't think anything ,"Encaps sounds odd, change the name of that",3,4,5,5,5,2,1,1,1,1,4,6,7,6,6,5332977,06-08-2020,15:28,07-08-2020,09:34,5429.25,desktop,3+ times a week,35 - 44 years,One,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
35,1,5,4,5,I like it because I normally sweat in hot conditions. So I would like to have a product that would help me. ,N/A,If it works. It works. Would change nothing ,3,3,4,5,5,3,3,3,1,1,5,4,5,7,7,5342778,06-08-2020,15:28,06-08-2020,15:38,51.25,mobile,Once a week,45 - 54 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
36,1,5,2,5,"I like the fact that there are cooling agents to keep me cool and fresh, regardless of the temperature",n/a,n/a,3,4,5,5,5,3,1,1,1,1,4,7,7,7,7,7590232,06-08-2020,15:28,06-08-2020,15:38,50.63636364,desktop,Once a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
37,1,5,4,5,The fact that it will keep my underarms fresh even in high temperatures and busy days.,N/A,N/A,5,5,4,5,5,3,1,1,1,1,5,6,6,7,7,5342261,06-08-2020,15:29,06-08-2020,15:34,25.66666667,desktop,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
38,1,4,4,5,cool sensation,none,n/a,5,4,2,4,4,2,3,4,2,3,5,5,5,6,5,5337832,06-08-2020,15:29,06-08-2020,15:31,10,desktop,Twice a week,35 - 44 years,I don’t have children under the age of 18,South Africa,Lotion,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
39,1,3,1,2,That it gives a cooling sensation,Nothing,Nope,5,5,5,5,5,1,1,1,1,1,5,7,7,7,7,5363737,06-08-2020,15:31,06-08-2020,15:37,29.16666667,desktop,Never,35 - 44 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
40,1,5,4,4,helps with sweat,nothing,n/a,3,4,4,5,5,3,1,2,1,1,4,7,6,7,7,5372743,06-08-2020,15:31,06-08-2020,15:34,13.58333333,desktop,3+ times a week,45 - 54 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
41,1,4,3,4,Reacts to the situation ,Nothing comes to mind ,N/a,3,4,4,4,4,2,1,1,1,1,4,5,5,6,6,5333308,06-08-2020,15:32,06-08-2020,15:34,12.16666667,mobile,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against wetness
42,1,4,4,4,It looks really cool and suitable for me.,Nothing at all,N/A,5,5,4,4,5,1,1,1,1,1,7,6,7,6,7,5367370,06-08-2020,15:32,06-08-2020,15:35,16.83333333,desktop,Once a week,18 - 24 years,I don’t have children under the age of 18,UK,Pump spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
43,1,5,5,5,Sometimes in my country it gets very hot that you need something like this product to cool you down,None,None,5,5,5,5,5,1,1,1,1,1,7,7,6,7,7,5364309,06-08-2020,15:34,06-08-2020,15:40,30.16666667,desktop,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
44,1,5,3,4,Solves a problem that I understand,Hard to believe it will actually work ,N/a,3,4,3,5,5,3,1,2,1,1,1,5,4,7,7,5334591,06-08-2020,15:35,06-08-2020,15:38,13.58333333,mobile,Never,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
45,1,5,2,5,it is something totally new and if it works it will be an excellent and useful product for the hot and humid days.,n/a,n/a,4,5,4,5,5,1,1,1,1,1,7,7,7,7,7,5336212,06-08-2020,15:35,06-08-2020,15:44,46.58333333,mobile,3+ times a week,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It does not cause white marks / stains on skin or clothes
46,1,5,5,5,Its unique formula,Nothing,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7741720,06-08-2020,15:36,13-08-2020,08:29,52652,mobile,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
47,1,3,4,3,I like that it can cool when body temperature goes up.,How many chemicals will the product contain? How healthy will it be for me in the long run?,n/a,3,4,4,5,4,5,2,2,1,1,1,3,5,7,6,7561494,06-08-2020,15:37,06-08-2020,16:37,304.0833333,mobile,Less often,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
48,1,4,4,3,"body temp sensor, possibly connected electronic device to regulate release cooling ingredients","need more info about cooling ingredients specifically - lab made, natural ","encaps is confusing, capsule? in cube shape?",3,5,4,5,4,3,2,1,2,1,4,5,6,7,6,5454078,06-08-2020,15:38,06-08-2020,15:42,21,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,Australia,Lotion,Yes,"I use it most days, but not every day",Female,Light sweater,It’s natural / contains natural ingredients
49,1,5,5,5,THE FACT THAT IT KEPT MY BODY TEMPERATURE COOL NO MATTER WHAT THE CLIMATE,NOTHING AT ALL,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5434188,06-08-2020,15:39,06-08-2020,15:47,40.18181818,desktop,3+ times a week,45 - 54 years,Two,US,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,
50,1,4,5,4,I like that you can use it when needed,Nothing,Nothing,4,4,4,4,4,2,1,1,1,1,6,6,6,6,6,5402612,06-08-2020,15:40,06-08-2020,15:47,35.81818182,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
51,1,5,4,4,all of it,nothing,no,4,4,4,5,5,2,2,1,1,1,6,6,6,7,7,5333896,06-08-2020,15:41,06-08-2020,20:29,1574.090909,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
52,1,3,4,3,on demand sounds interesting,nothing,unsure,3,2,4,5,4,2,3,1,1,1,4,1,6,7,7,6899446,06-08-2020,15:42,06-08-2020,15:55,66.08333333,desktop,Twice a week,45 - 54 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
53,1,4,4,4,The fact that it is activated by my body temperature. ,Im not sure what ingredients are in it,n/a,4,4,4,5,5,1,1,1,1,1,5,6,7,7,7,5362665,06-08-2020,15:43,06-08-2020,15:57,77.45454545,desktop,3+ times a week,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It cares for my skin
54,1,3,5,4,works in all weathers to control perspiration ,residue left by cooling ingredients?,-,2,4,3,5,5,3,2,2,1,1,5,6,6,7,7,5454514,06-08-2020,15:43,06-08-2020,15:55,69.27272727,desktop,Once a week,35 - 44 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
55,1,4,3,3,keeps him cool while getting from A to B keeps you fresh ,I find it hard to believe is it meant to be added to freshly washed arm pits ? or used on the go ? ,n/a ,3,4,4,4,5,3,1,1,1,1,1,6,7,7,7,5333643,06-08-2020,15:45,06-08-2020,15:58,65.25,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
56,1,4,5,3,Refresh on demand. Cooling sensation,Will it be too cold? ,How do I apply,4,4,5,5,5,3,3,1,1,1,4,5,7,7,7,5337164,06-08-2020,15:45,06-08-2020,15:50,25.08333333,mobile,3+ times a week,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
57,1,5,4,5,on-demand cooling sensation,none right now. need to try and test if really works,n/a,2,4,5,5,4,3,2,1,1,1,1,5,7,6,7,8641463,06-08-2020,15:45,06-08-2020,15:56,55.91666667,desktop,Twice a week,35 - 44 years,Three,Philippines,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
58,1,4,4,5,"It addresses the problem of people in humid countries. In a tropical country like mine, I need a deodorant that keeps sweat under control and has cooling effect.",n/a,n/a,4,5,4,5,4,2,1,1,1,3,5,7,6,7,6,8589429,06-08-2020,15:45,06-08-2020,15:51,30.25,mobile,3+ times a week,25 - 34 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
59,1,4,4,4,I Like the idea that the product releases cooling when its needed,nothing ,I Think that the options of containers would have to be easy to carry,5,5,5,4,5,1,1,1,1,1,6,6,6,6,6,6889928,06-08-2020,15:46,06-08-2020,15:49,17.45454545,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Pump spray,Yes,I use it multiple times a day,Female,Normal sweater,It cares for my skin
60,1,4,3,3,The cooling sensation since it's hot and humid in where I live.,n/a,Maybe not change but I would prefer it to be unscented.,2,4,4,4,5,3,2,2,1,1,3,4,4,6,6,8664448,06-08-2020,15:49,06-08-2020,16:03,71,desktop,3+ times a week,35 - 44 years,I don’t have any children,Philippines,Pump spray,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
61,1,4,4,3,"Obviously keeping my cool, especially when travelling.","Is it tested, not to have any effect on your skin?",n/a,5,4,4,5,5,1,1,1,1,1,6,7,6,7,7,5362650,06-08-2020,15:50,06-08-2020,15:56,27.83333333,desktop,Less often,45 - 54 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
62,1,5,4,5,Keeping me cool in the heat ,if the chemicals in it won't have a side effect,n/a,1,2,5,4,4,5,1,1,2,3,7,7,7,5,3,5363149,06-08-2020,15:51,06-08-2020,16:01,53.41666667,mobile,Less often,18 - 24 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Male,Light sweater,It cares for my skin
63,1,,,,,,,,,,,,,,,,,,,,,,5335537,06-08-2020,15:51,,,,mobile,Twice a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
64,1,5,5,5,The Product releases cooling sensation..,n/a,n/a,3,5,3,5,5,2,2,2,1,2,6,7,7,7,7,8589729,06-08-2020,15:53,06-08-2020,16:01,43.27272727,desktop,Less often,45 - 54 years,Two,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
65,1,5,5,5,modern and transparent,None,none,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,7589690,06-08-2020,15:53,06-08-2020,16:01,39.75,desktop,3+ times a week,25 - 34 years,Two,UK,Pump spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
66,1,5,4,5,Cooling sensation upon heat contact,N/A,N/A,4,5,4,5,5,3,1,1,1,1,5,7,7,7,7,7605437,06-08-2020,15:53,06-08-2020,15:57,23.36363636,mobile,3+ times a week,35 - 44 years,Three,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
67,1,5,5,5,quality performance,n/a,n/a,4,5,5,4,5,2,1,1,1,3,6,7,7,7,6,7719330,06-08-2020,15:55,06-08-2020,16:00,26.25,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
68,1,5,4,4,The claim that it will activate in our body temperature and make us feel cool in hit environment. That's something we all need. ,I don't dislike anything but I think it won't work for a long time. ,n/a,5,4,5,4,4,2,1,1,1,1,6,7,6,6,7,7682062,06-08-2020,15:55,06-08-2020,16:00,21.25,mobile,3+ times a week,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It cares for my skin
69,1,5,5,5,Every thing is cool about this product ,No comment on this issue ,It's ok no comment ,3,4,3,1,3,3,2,3,5,2,4,7,7,5,4,7671249,06-08-2020,15:56,06-08-2020,15:58,8.083333333,mobile,Once a week,25 - 34 years,One,UK,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
70,1,5,4,5,product releases cooling ingredients as and when required and it does really gives great relief.,n/a,i would say if product description also contains the percentage of its effectiveness then it can increase customer's interest and inclination.,4,4,5,5,4,1,1,1,2,3,6,7,7,7,6,7831754,06-08-2020,15:56,06-08-2020,16:02,28,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
71,1,5,3,5,Cooling is most necessary element when human sweats. If the mentioned product comes to reality it would be one of the best product so far.,I doubt it would be possible,N/a,2,5,5,4,5,2,1,1,2,1,3,6,6,6,7,7764109,06-08-2020,15:56,06-08-2020,16:51,274.5833333,mobile,Less often,35 - 44 years,Three,India,Lotion,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
72,1,3,2,3,If it does release cooling ingredients as body temperature rises it would be very useful,Not sure but it might be irritating for sensitive skin,N/a,3,5,5,5,5,3,1,1,1,1,3,7,7,6,6,6917683,06-08-2020,15:56,07-08-2020,09:46,5349.5,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
73,1,5,5,5,It's will keep me cool for 24hours and more fresh ,n/a,n/a,5,5,5,5,5,2,1,1,1,1,7,7,7,7,7,7590336,06-08-2020,15:57,06-08-2020,16:06,43.41666667,desktop,3+ times a week,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
74,1,4,4,4,Cool sensation that is felt,It is only temporary for some time,It should provide atleast 6 hours cooling,5,5,4,4,5,1,1,1,1,1,7,6,7,6,7,7719179,06-08-2020,15:57,06-08-2020,16:03,29.58333333,mobile,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It’s natural / contains natural ingredients
75,1,5,5,5,Excellent design,I don't dislike anything,N/A,5,4,4,5,4,3,3,3,3,3,6,6,6,7,6,7835731,06-08-2020,15:57,06-08-2020,16:00,13.08333333,mobile,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It’s natural / contains natural ingredients
76,1,5,5,5,Excellent design ,I don't dislike anything ,N/A,5,5,4,5,5,4,2,3,4,3,7,7,6,7,7,7835718,06-08-2020,15:57,06-08-2020,16:01,17.66666667,mobile,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
77,1,5,5,5,Excellent design ,I don't dislike anything ,N/A,5,5,4,4,5,5,3,3,4,3,7,6,6,7,7,7835804,06-08-2020,15:57,06-08-2020,16:01,18.41666667,mobile,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
78,1,4,3,4,Because I am also traveling morning time with a sweatshirt in public transport,afraid made by harsh chemicals,is possible to make it with natural ingredients,3,5,4,5,5,5,1,1,1,1,4,7,7,7,7,7561640,06-08-2020,15:58,06-08-2020,16:03,28.58333333,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,No,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
79,1,4,4,4,It can reduce sweating,nothing,no nothing,5,4,5,4,4,1,1,1,1,1,7,7,6,7,7,7812592,06-08-2020,15:58,06-08-2020,16:05,38,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
80,1,4,5,4,"In humid condition it effect more, I like that.",After few hours it start fading. ,N/A,4,4,4,5,5,2,1,2,2,1,7,6,6,7,7,7742087,06-08-2020,15:58,06-08-2020,16:04,31.58333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,India,I don't use any,No,I only use it on specific occasions,Male,Light sweater,I don't use any
81,1,5,5,5,"The thing I like about is the product is that, it helps in keeping the body fresh throughout the day, especially in hot areas like the one I live in.",N/A,N/A ,5,5,4,5,5,1,1,2,1,1,6,6,4,7,6,7554650,06-08-2020,15:58,06-08-2020,16:05,38.27272727,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
82,1,3,3,5,No comment ,No comment ,No comment on this ,2,3,3,3,2,3,3,3,2,3,4,4,3,3,4,5340821,06-08-2020,15:58,06-08-2020,16:03,21.08333333,mobile,Twice a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
83,1,5,3,4,The extra cooling so that I don't have to turn up to work with sweaty armpits,"Nothing, just that it isn't that believable",n/a,5,4,5,4,5,2,2,2,2,1,6,5,7,5,7,7561387,06-08-2020,15:59,06-08-2020,19:19,999.1666667,desktop,Twice a week,35 - 44 years,I don’t have any children,UK,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
84,1,5,5,4,Safe for us,No dislike,Use more frequently,4,4,5,4,5,5,5,5,4,4,7,7,7,7,6,7763484,06-08-2020,15:59,06-08-2020,16:06,35.5,desktop,3+ times a week,25 - 34 years,One,India,Gel,Yes,I use it multiple times a day,Male,Normal sweater,It’s natural / contains natural ingredients
85,1,5,4,5,Ice cube,None,None,4,4,4,4,4,2,3,2,4,3,7,6,6,6,6,7590347,06-08-2020,16:00,06-08-2020,16:05,26.5,mobile,3+ times a week,18 - 24 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
86,1,4,4,3,The cooling of the skin surface.,N/A,n/a,4,4,4,4,4,2,1,1,1,1,5,6,5,6,6,5335299,06-08-2020,16:00,06-08-2020,16:09,47.41666667,mobile,Twice a week,65 years +,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,Has a fragrance I like
87,1,4,4,3,Cooling sensation is the thing which is good especially during summer. It helps to give you refreshing feeling,I guess they could add more good name to the product. Name and tag is not appealing ,I guess it could have been designed in good way the product article ,4,4,4,3,4,4,4,4,4,4,5,5,5,5,5,7763362,06-08-2020,16:00,06-08-2020,16:03,18.16666667,desktop,Twice a week,25 - 34 years,One,India,Gel,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
88,1,5,4,4,Hopefully this product will last the whole day.,N/A,N/A,3,5,4,5,5,4,2,1,1,1,2,6,6,7,7,7617895,06-08-2020,16:00,13-08-2020,12:45,49425.58333,desktop,Less often,65 years +,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
89,1,5,4,5,it cools us when we feel really hot and humid,is it like prickly heat powder,none,5,4,4,4,4,1,1,1,1,1,6,6,6,7,7,7975298,06-08-2020,16:00,06-08-2020,16:13,63.75,desktop,3+ times a week,35 - 44 years,Two,India,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
90,1,5,5,5,That it automatically activates the cooling sensation when our internal body temperature increases is innovative., nothing in general.,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7741852,06-08-2020,16:00,06-08-2020,16:11,53.58333333,mobile,3+ times a week,25 - 34 years,One,India,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
91,1,4,4,4,extra cooling sensation,NA,NA,4,4,5,5,4,4,4,4,5,5,7,6,7,5,5,7970976,06-08-2020,16:01,06-08-2020,16:08,33.16666667,desktop,3+ times a week,45 - 54 years,One,India,Aerosol Spray,No,I only use it on specific occasions,Female,Normal sweater,It doesn’t use a lot of packaging / packaging is recyclable
92,1,5,2,5,Effective if you get hot,N/a,N/a,4,4,5,5,5,3,2,5,5,1,5,6,7,7,7,5374525,06-08-2020,16:01,06-08-2020,16:08,31.25,desktop,Twice a week,35 - 44 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
93,1,5,5,5,I liked ICE CUBE ENCAPS,nothing,n/a,4,4,4,4,4,3,3,3,3,3,7,7,7,7,7,9055941,06-08-2020,16:02,06-08-2020,16:11,47,desktop,,,,,,,,,,
94,1,4,4,4,It gives extra on demand cooling sensation which I needed.,n/a,n/a,4,5,4,5,5,2,1,1,1,1,6,7,7,7,7,8596927,06-08-2020,16:03,06-08-2020,16:21,91.08333333,desktop,Twice a week,45 - 54 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
95,1,4,4,4,On-demand,Not clear how it would work. Assuming some sort of chemical reaction.,Encaps as a word doesn't make any sense,4,3,5,4,4,2,2,1,2,2,4,4,7,4,4,5335353,06-08-2020,16:03,06-08-2020,16:24,113,desktop,Twice a week,25 - 34 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
96,1,4,4,4,It is very good way to remain cool by this method.,It can harm our skin,Natural intigerents if possible,4,5,4,4,4,2,1,2,2,1,4,7,5,5,6,7554136,06-08-2020,16:04,06-08-2020,16:11,36.75,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
97,1,5,3,5,for its special characteristics of giving cool & fresh feeling on demand.,n/a,n/a,5,5,5,5,5,1,1,1,2,1,7,7,7,7,7,7719415,06-08-2020,16:04,06-08-2020,16:14,53.5,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
98,1,5,5,5,It is suitable for sensitive skin,n/a,n/a,5,3,4,4,5,1,1,2,2,1,6,7,7,7,7,7590066,06-08-2020,16:04,06-08-2020,16:10,26.5,mobile,3+ times a week,18 - 24 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Excessive sweater,It cares for my skin
99,1,4,5,5,I like the cool effect,Nothing,Nothing,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7812620,06-08-2020,16:04,06-08-2020,16:06,8,mobile,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It’s natural / contains natural ingredients
100,1,4,4,4,I love this product ,Nothing ,Nothing ,4,4,4,5,4,3,4,2,3,4,6,6,6,5,6,8604210,06-08-2020,16:05,06-08-2020,16:08,14.58333333,mobile,Twice a week,35 - 44 years,One,India,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,Has a fragrance I like
101,1,,,,,,,,,,,,,,,,,,,,,,7743044,06-08-2020,16:06,,,,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
102,1,5,5,5,It's something I've never heard of before.,There is nothing I dislike about this product.,n/a,5,5,5,5,5,2,1,1,1,1,7,7,7,7,7,8719343,06-08-2020,16:07,06-08-2020,16:10,19.41666667,desktop,,,,,,,,,,
103,1,4,3,3,cooling sounds good,not too much,n/a ,4,4,4,5,4,2,1,2,4,2,2,7,6,7,6,6900351,06-08-2020,16:07,06-08-2020,16:08,7.666666667,desktop,Few times a month,Under 18 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
104,1,5,5,5,It is very innovative and sounds very cooling in hot weather - I love it,"I worry when they ""melt"", that I might get wet",Explain what happens once they have cooled you down - do they melt?,3,4,4,4,4,2,1,2,1,1,5,7,5,6,6,5332951,06-08-2020,16:07,06-08-2020,16:10,14.91666667,desktop,Twice a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
105,1,5,5,5,the product releases cooling ingredients when activated by body temperature,there is nothing to be disliked as,"no, all is perfect ",5,5,4,5,5,2,1,1,1,1,5,7,7,7,7,7742068,06-08-2020,16:07,06-08-2020,16:16,43,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
106,1,5,5,4,Cooling sensation always keeps you very cool and away from irritation. It gives a refreshing or rejuvenating experience of using it. ,Nothing to neglect or reject about the product which seems to be an apt product of mine. ,N/A,5,5,5,5,5,1,1,2,1,2,7,6,7,7,6,7812488,06-08-2020,16:07,06-08-2020,16:16,45.16666667,desktop,3+ times a week,35 - 44 years,Two,India,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
107,1,4,4,4,It will keep me fresh even if it’s hot,I wouldn’t know yet,n/a,3,2,4,5,5,3,2,2,1,1,4,4,4,6,6,8661434,06-08-2020,16:08,06-08-2020,16:18,49.83333333,mobile,Less often,45 - 54 years,I don’t have any children,Philippines,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
108,1,3,3,5,good,nothing,product cooling,2,4,2,3,3,2,2,3,4,3,4,4,5,5,4,8588531,06-08-2020,16:08,06-08-2020,16:11,16.90909091,desktop,3+ times a week,35 - 44 years,One,India,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,Has a fragrance I like
109,1,4,4,4,If this work it sounds like they're good creation. ,Not knowing the price of the item. ,N/A,3,4,5,5,5,2,2,1,1,1,4,5,6,6,6,7590275,06-08-2020,16:09,06-08-2020,16:19,49.75,mobile,Twice a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It cares for my skin
110,1,5,5,5,Very good product for sweating,Na,Na,5,5,5,5,5,2,3,3,2,2,4,5,4,6,7,7763374,06-08-2020,16:09,06-08-2020,16:11,8.666666667,mobile,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
111,1,5,3,4,"I hate feeling hot and sweaty on public transport, especially if I can feel that my deodorant just isn't working as well as I want it to. Being able to use something like this on-the-go would be great!",I just can't quite envision how they would work or what they'd look like!,n/a,5,4,4,5,5,2,1,1,1,1,6,6,4,7,7,7295393,06-08-2020,16:09,06-08-2020,16:14,22.41666667,desktop,Once a week,35 - 44 years,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
112,1,5,1,3,I like the idea of cooling agents on demand. I hate to sweat.,i don't believe it can be accomplished without harmful ingredients. ,N/a,3,4,4,4,4,3,1,1,1,1,1,5,5,4,6,5378048,06-08-2020,16:10,06-08-2020,16:15,27.25,mobile,Twice a week,35 - 44 years,One,US,Soft solid (clinical),Yes,"I use it most days, but not every day",Female,Anxious sweater,Has a fragrance I like
113,1,4,5,5,I like it too much,nothing,n/a,5,4,4,5,4,5,4,4,4,5,6,5,7,6,6,7763536,06-08-2020,16:10,06-08-2020,16:14,19.66666667,desktop,3+ times a week,35 - 44 years,One,India,Soft solid (clinical),Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
114,1,4,2,3,woudd reallly be very welcme now,findnit hard to believe it works,be more connvincing,3,4,4,5,5,2,2,3,1,1,5,4,5,7,7,5361305,06-08-2020,16:11,06-08-2020,16:17,26.41666667,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
115,1,4,2,3,Freshness in hot climate,Exaggeration about the claims,N/A,3,3,3,4,4,3,3,3,2,2,3,1,4,5,5,7831134,06-08-2020,16:12,06-08-2020,16:15,18.41666667,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
116,1,3,3,3,I like the ice cooling sensatioon...,N/A,N/A,4,4,4,5,4,1,1,1,1,1,6,6,6,7,6,8661500,06-08-2020,16:13,06-08-2020,16:20,38.90909091,mobile,Once a week,45 - 54 years,One,Philippines,I don't use any,No,I rarely / never use deodorant,Female,Light sweater,I don't use any
117,1,4,4,4,cooling effect,nothing,no,2,2,2,2,2,2,2,2,2,2,5,5,5,5,5,6898942,06-08-2020,16:13,06-08-2020,16:15,13.16666667,desktop,Never,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
118,1,5,5,5,the concept,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7765336,06-08-2020,16:15,06-08-2020,16:23,45.72727273,desktop,,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Excessive sweater,
119,1,4,4,4,It is a freshness and cooling product that is suitable for people who are travelling a lot.,n/a,n/a,4,4,4,5,5,2,1,1,1,1,5,5,6,7,7,7554078,06-08-2020,16:17,10-08-2020,16:23,28831.75,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
120,1,5,3,4,staying cool,side effects?,no its fine,3,5,5,5,5,3,1,1,1,1,1,7,7,7,7,7618301,06-08-2020,16:18,06-08-2020,16:21,14.16666667,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
121,1,5,5,5,"That is ice cube and can be activated by my body temperature, it is what I have been waiting for.",n/a,n/a,5,5,5,5,5,2,1,1,1,1,6,7,7,7,7,5362788,06-08-2020,16:18,06-08-2020,16:28,48.08333333,mobile,Less often,35 - 44 years,Four or more,South Africa,Roll-on,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
122,1,4,4,4,"Easy to use, extra cooling",nothign so far,nope,4,4,4,5,4,1,1,1,1,1,6,6,7,7,7,6893606,06-08-2020,16:21,06-08-2020,16:29,43,desktop,Few times a month,55 - 64 years,One,US,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
123,1,5,3,5,That it will keep me cool and fresh especially in this very hot and humid weather conditions we are having at the moment,n/a,Would this have a fragrance or just natural nothingness,3,4,4,5,5,2,1,1,1,1,4,6,6,7,7,6896332,06-08-2020,16:21,06-08-2020,16:26,23.5,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
124,1,5,2,5,"I reside in a hot and humid environmental, I definitely know how much a person like me would require such a product. ",The idea seems too far fetched. ,The sooner such product is invented the better,4,5,4,5,4,2,1,1,1,1,6,6,7,6,6,7719365,06-08-2020,16:22,06-08-2020,16:28,30.16666667,mobile,Less often,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It cares for my skin
125,1,5,4,5,The details are bold and clear,n/a,The background colour should be changed to light pink,3,4,4,4,5,3,3,2,2,3,5,5,6,5,7,7742034,06-08-2020,16:22,06-08-2020,16:27,21.58333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
126,1,5,5,4,I like the product very much.,I founf nothing to dislike.,Yes I thing something needs to be changed.,5,5,4,5,5,1,1,1,1,1,7,7,7,7,7,7742081,06-08-2020,16:23,06-08-2020,16:27,21.91666667,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against wetness
127,1,4,4,4,The cooling ingredients that control body temperature to stop sweat. ,I don't see anything I don't like. ,Nothing. ,4,4,4,4,4,2,2,2,1,1,3,5,5,6,6,7590003,06-08-2020,16:23,06-08-2020,16:30,34.58333333,desktop,3+ times a week,18 - 24 years,I don’t have any children,US,Roll-on,Yes,"I use it most days, but not every day",Male,Anxious sweater,It prevents / controls against odour
128,1,5,3,4,Cooling effect,n/a,n/a,4,4,4,5,5,2,2,2,1,1,5,6,6,7,7,7590036,06-08-2020,16:23,06-08-2020,16:27,16.66666667,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
129,1,4,3,5,Sounds like a refreshing idea. If it deliveres it would be very nice.,could feel weird.,n/a,4,5,5,4,4,1,1,1,1,1,5,6,6,6,7,5362791,06-08-2020,16:23,06-08-2020,16:36,64.33333333,desktop,Less often,35 - 44 years,One,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
130,1,5,4,5,"new,fresh,,cooling",nothing,new scents,3,4,4,5,5,2,2,2,1,1,3,5,6,7,7,7565161,06-08-2020,16:23,06-08-2020,16:27,19.91666667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
131,1,4,3,4,That it gives you extra freshness in the heat ,Nothing so far ,Nothing at the moment,4,4,5,4,4,3,1,1,1,1,4,6,4,6,6,6887763,06-08-2020,16:24,06-08-2020,16:28,19.25,mobile,Twice a week,35 - 44 years,Two,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
132,1,5,5,5,Releases cooling ingredients no matter how much is the temperature,na,na,5,5,4,5,5,1,1,1,4,1,6,7,6,7,7,7555404,06-08-2020,16:26,06-08-2020,16:32,29.33333333,mobile,Once a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
133,1,5,5,5,This is the latest innovative product,There is nothing for dislike,No I did not want any change,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7812519,06-08-2020,16:27,06-08-2020,16:32,29.54545455,desktop,3+ times a week,45 - 54 years,One,India,Pump spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
134,1,5,5,4,"I like this product due to its goodness, which is useful during humid environment. Which give cool to the body.",N/A,Add some good sweet smell.,5,4,4,5,5,1,1,1,3,2,7,6,6,7,7,7763718,06-08-2020,16:27,06-08-2020,16:35,37.83333333,mobile,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It’s natural / contains natural ingredients
135,1,5,3,4,That it can cool you down in the heat,N/a,n/a,3,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5333151,06-08-2020,16:27,06-08-2020,16:38,55.91666667,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
136,1,4,4,4,Sounds great for travelling on those hot crowded carriages,Nothing yet,n/a,4,5,4,5,5,1,1,1,1,1,5,7,4,7,6,5377597,06-08-2020,16:27,06-08-2020,16:31,19.36363636,mobile,Twice a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
137,1,4,5,5,Which product is best for me as it has good fragnance and satisfy all my needs,It should tell about removal of odour,It should be long lasting,4,5,5,5,4,4,4,5,5,4,7,5,6,7,5,8265921,06-08-2020,16:28,06-08-2020,16:31,14.75,desktop,,18 - 24 years,,India,,,,Male,,
138,1,5,2,5,"I think this is best for me. Because the temperature of my area can goes upto 45""C during summer and this will be a great solution for my need.",n/a,n/a,4,4,3,5,4,3,1,1,1,1,4,7,6,5,6,8491996,06-08-2020,16:28,06-08-2020,16:34,30.75,desktop,,25 - 34 years,,India,,,,Female,,
139,1,4,4,4,The fact that my body temperature regulates and activates the deodorant. I like that it can prevent my sweating from going out of control.,I am not sure of the ingredients that can be used to activate the product I am not sure of the fragrance involved with this product,The name provided for the product should probably be changed. The name makes the product feel icy and cold to the underarm region I would provide some sort of ingredient inventory to allay the fact that it may hurt sensitive skin,1,4,4,5,4,4,1,1,1,1,2,7,7,7,7,7618490,06-08-2020,16:28,06-08-2020,16:49,111.3636364,desktop,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
140,2,,,,,,,,,,,,,,,,,,,,,,5372537,06-08-2020,16:28,06-08-2020,16:29,14,desktop,Never,45 - 54 years,Two,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
141,1,4,4,5,Helpful in hot and humid condition,N/a,N/a,5,5,5,5,5,3,2,4,2,3,7,7,7,7,7,7764100,06-08-2020,16:29,06-08-2020,16:42,69.16666667,desktop,3+ times a week,35 - 44 years,Two,India,Pump spray,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
142,1,4,5,4,useful properties as explained ,nothing ,none,4,5,4,4,4,2,2,1,1,1,5,3,6,5,5,7742282,06-08-2020,16:29,06-08-2020,16:34,23.66666667,mobile,3+ times a week,45 - 54 years,One,India,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
143,1,5,4,4,I live in a humid place and I sweats a lot. This product is innovative and something I need.,n/a,n/a,5,5,4,5,5,1,1,2,1,1,6,7,5,6,6,7619265,06-08-2020,16:30,06-08-2020,17:01,169.2727273,desktop,Less often,18 - 24 years,I don’t have any children,India,Roll-on,Yes,"I use it most days, but not every day",Female,Heavy sweater,Has a fragrance I like
144,1,4,5,5,ice cube encaps,no,n/a,3,4,4,4,5,5,3,4,4,4,4,5,5,6,4,7742156,06-08-2020,16:31,06-08-2020,16:33,12.25,desktop,Twice a week,45 - 54 years,One,India,Cream,Yes,I use it at least once a day,Female,Heavy sweater,It does not cause white marks / stains on skin or clothes
145,1,4,2,3,it's cooling on hot days,I can't imagine how it would work/feel,n/a,3,3,3,5,5,3,3,3,1,1,4,4,4,7,7,6881697,06-08-2020,16:31,06-08-2020,17:13,207.1666667,desktop,3+ times a week,25 - 34 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
146,1,5,5,5,"It has a formulated ingredients that's activated when your body temperature rises and it is very relevant to the user mostly in harsh, humid environment.",No comment or any negative feedback because it is new to me and I haven't tried the Ice cube encaps on a deodorant or any anti persperant products.,N/A,4,4,5,5,5,1,1,1,1,1,5,7,4,7,7,8641285,06-08-2020,16:32,06-08-2020,17:04,160.5,mobile,Twice a week,35 - 44 years,Two,Philippines,Cream,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
147,1,4,4,5,It activates when is needed most,Nothing i see to dislike,No,4,5,4,5,5,2,1,1,1,1,3,7,6,7,7,7554109,06-08-2020,16:32,06-08-2020,16:36,20.27272727,mobile,Once a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Light sweater,It prevents / controls against odour
148,1,5,4,5,The cooling sensation which activated by the body temperature and keeps me fresh,n/a,N/A,5,5,5,5,5,1,1,1,1,1,6,7,7,6,7,7832404,06-08-2020,16:33,06-08-2020,17:02,147.75,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
149,1,3,3,3,I like the concept,No dislikes,No changes,4,4,3,4,4,2,2,2,2,4,6,5,3,5,4,6912904,06-08-2020,16:34,06-08-2020,16:40,25.91666667,mobile,Once a week,18 - 24 years,I don’t have any children,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It cares for my skin
150,1,5,3,5,Very good quality product ,Happy with outcome ,No comment on this issue ,4,3,3,3,2,3,3,3,3,3,4,4,4,4,4,5333904,06-08-2020,16:34,06-08-2020,16:36,6.583333333,mobile,Twice a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
151,1,2,3,2,cooling,what about melting?,no idea,4,4,2,4,4,1,2,1,2,2,5,3,4,4,4,6913436,06-08-2020,16:35,06-08-2020,16:43,37.58333333,desktop,Once a week,45 - 54 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Male,Non-sweater,It prevents / controls against odour
152,1,5,4,4,It's on demand cooling sensation,Nothing much to be disliked,N/a,4,5,4,4,4,1,1,1,1,1,6,5,6,6,6,7741906,06-08-2020,16:36,06-08-2020,16:39,16.58333333,mobile,3+ times a week,35 - 44 years,Two,India,Pump spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
153,1,5,5,5,scenario,n/a,n/a,4,3,5,4,4,3,1,4,1,1,7,6,5,6,5,7553645,06-08-2020,16:36,06-08-2020,16:41,27,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
154,1,4,2,5,If it cool me when I sweat . Them I will definitely buy this product.I really need something like that for me.,There is nothing to dislike but It hard for me to believe in this.,n/a,3,5,3,4,4,3,1,3,2,2,4,7,4,5,6,7676524,06-08-2020,16:36,06-08-2020,16:41,24.41666667,desktop,3+ times a week,25 - 34 years,One,India,Pump spray,Yes,I use it multiple times a day,Female,Anxious sweater,It cares for my skin
155,1,3,3,5,Ok product ,No comment on this issue ,No comment on this issue ,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,6898433,06-08-2020,16:36,06-08-2020,16:37,5.583333333,mobile,Twice a week,25 - 34 years,One,UK,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
156,1,4,5,5,Feeling cool and fresh,No,Use in right pattern,4,5,5,4,5,5,4,5,4,5,6,7,6,7,7,8069554,06-08-2020,16:38,06-08-2020,16:41,15.66666667,desktop,,25 - 34 years,,India,,,,Female,,
157,1,5,3,4,It takes effect when needed but still as convenient to apply as usual,N/A,NA,3,4,4,5,5,3,1,1,1,1,3,6,6,7,7,6898411,06-08-2020,16:39,06-08-2020,16:40,9.166666667,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
158,1,4,4,4,Seems light and fresh,N/A,N/A,5,4,5,5,5,1,1,1,1,1,6,5,6,7,7,6899967,06-08-2020,16:40,06-08-2020,16:44,21.54545455,desktop,Twice a week,45 - 54 years,I don’t have any children,UK,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
159,1,5,5,5,"the cooling element, i actually work in a warm environment and this would certainly be advantageous to me",nothing i can think of,no i wouldn't change anything,4,5,4,5,5,2,1,1,1,1,6,7,7,7,7,5377616,06-08-2020,16:40,06-08-2020,16:44,17.75,desktop,3+ times a week,45 - 54 years,One,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
160,1,5,4,5,Like the fact that Icecube encaps gives extra on-demand cooling sensation when activated by body temperature,Not clear till when this feature will continue to work.,If possible mention till whether it will active through the day or not/,3,5,5,4,4,3,5,1,1,1,4,7,6,7,7,7743125,06-08-2020,16:41,06-08-2020,16:50,45.25,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
161,1,3,4,1,Keeps you feeling cool and fresh during hot conditions.,Not sure how it would make me feel.,nothing,3,3,5,5,5,3,1,1,1,1,5,7,7,7,7,6905722,06-08-2020,16:42,06-08-2020,16:47,24.33333333,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
162,1,4,1,4,I !old that it will cool me down as well as keep me smelling fresh.,Not convinced it would work!,N/a,3,4,4,4,5,3,2,2,1,1,1,5,5,7,7,5367521,06-08-2020,16:43,06-08-2020,16:46,18.45454545,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Cream,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
163,1,5,5,5,Everything it would be fantastic in summer,N/a,n/a,4,4,5,5,5,2,1,1,1,1,3,7,6,7,7,5388728,06-08-2020,16:43,06-08-2020,16:48,24.5,mobile,3+ times a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
164,1,5,5,5,"Maybe you’re one of the bored people in quarantine and want to give the challenge a go, or maybe you just want to laugh at others’ stupidity. Either way, the new challenge is certainly an interesting one. ","crazy new challenges every day. Perhaps after two weeks of lockdown in the UK the boredom is setting in, as these TikTok challenges are definitely getting stranger.","click on the sound they have used and apply it to your video. Lots of people have used the same song for the challenge, but you can use any soundtrack you want really",5,4,4,5,4,3,1,5,2,4,5,6,6,7,7,7553840,06-08-2020,16:43,06-08-2020,16:50,35.66666667,desktop,3+ times a week,25 - 34 years,One,India,Soft solid (clinical),Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against wetness
165,1,5,4,5,Ice Cube Encaps is something new and different,n/a,n/a,3,4,5,5,4,3,2,2,2,3,7,5,6,7,7,7744774,06-08-2020,16:44,06-08-2020,16:47,16.90909091,desktop,,35 - 44 years,,India,,,,Female,,
166,1,4,4,4,The cooling sensation triggered by body temperature by using ice cube encaps. The effect stated to be whatever be the climate you are there it will work. It is a fantastic relief for those sweat more during the day out in hot summer or humidity high place especially sea shore(coastal towns).,n/a,n/a,4,4,5,4,4,1,1,1,1,3,5,7,7,6,5,7741926,06-08-2020,16:44,06-08-2020,16:58,77.45454545,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,No,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
167,1,4,4,5,Cools you off,None,None,2,4,4,5,5,2,2,1,1,1,4,5,6,6,7,6973323,06-08-2020,16:45,06-08-2020,16:48,16.91666667,mobile,3+ times a week,35 - 44 years,Two,US,Gel,Yes,I use it at least once a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
168,1,1,3,1,I do not like amything about the product because there is not enough information to make a judgement.,All of it.,N/A,3,3,4,4,4,3,2,1,1,1,4,4,6,7,6,7561521,06-08-2020,16:47,06-08-2020,16:51,20.66666667,mobile,Once a week,35 - 44 years,I don’t have any children,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It’s natural / contains natural ingredients
169,1,5,3,4,This whole concept is new to me and I would like to try this for sure.,How am I suppose to know this is working and how effective is this ?,Yeah Please provide us full details and explanation about this.,3,4,4,5,5,3,1,2,1,2,4,7,5,7,6,7782021,06-08-2020,16:51,06-08-2020,16:56,26.33333333,desktop,,25 - 34 years,I don’t have children under the age of 18,India,Pump spray,Yes,I use it multiple times a day,Female,Anxious sweater,
170,1,4,4,4,Having a cooling sensation in the heat sounds good ,nothing ,nothing ,4,4,4,4,4,2,3,2,1,1,4,4,5,6,6,5342661,06-08-2020,16:51,06-08-2020,16:54,13.16666667,mobile,3+ times a week,45 - 54 years,One,UK,Soft solid (clinical),Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
171,1,4,4,4,It looks like it would take care of a problem,Nothing it looks very good,N/A,4,4,4,4,4,3,3,3,3,3,5,5,5,6,6,8436314,06-08-2020,16:54,11-08-2020,05:46,32659.75,desktop,Twice a week,45 - 54 years,One,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
172,1,,,,,,,,,,,,,,,,,,,,,,5335433,06-08-2020,16:55,,,,desktop,Twice a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
173,1,3,4,4,Deodrant keep fresh in full day,Most popular deodorant nt keep longer,No,2,4,2,4,3,4,3,3,3,3,6,4,5,6,4,7590150,06-08-2020,16:56,06-08-2020,17:03,35.75,mobile,Twice a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
174,1,4,4,4,Quality,N/a,"Packaging size, travel pack should be there",4,3,3,5,5,1,2,4,1,4,5,5,6,6,6,7764072,06-08-2020,16:57,06-08-2020,17:02,27.08333333,mobile,3+ times a week,35 - 44 years,One,India,Pump spray,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
175,1,5,4,5,When even after commuting in humid atmosphere there is no adverse impact I feel mentally very positive and remain fully energized which fill me with new positivism and concentrate in my work ,No I have nothing to dislike in it,n/a,4,4,4,5,5,3,1,1,1,1,5,6,6,7,7,7719225,06-08-2020,16:58,06-08-2020,17:06,38.41666667,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
176,1,5,4,5,"This indeed is very unique product and I think the composition of this product will help our customer to feel relaxed,odourfree and energetic through out the whole day.less the sweat more refreshed we would look as our body will not have water loss.products functionality,its appearance and cost plays important role in deciding and as per the details mentioned over here fulfills its necessity.I liked a lot the composition of this product. Ice cube encaps will definitely turn the rocks down and will be successful.",N/a,N/a,5,4,5,5,5,1,2,1,1,1,7,6,7,6,7,8793397,06-08-2020,16:58,06-08-2020,17:11,67.63636364,mobile,,,,,,,,,,
177,1,4,3,4,"Keeps me cool, especially when I am out and about in a hot environment or exercising",n/a,n/a,4,4,4,5,5,1,1,1,1,1,5,6,6,7,7,5333649,06-08-2020,17:00,06-08-2020,17:03,16.83333333,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,UK,Pump spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
178,1,4,3,4,The is the perfect product for hot days,The product sounds too good to be true ,I would make the product be good for any temperatures ,1,4,5,5,4,4,1,2,1,1,1,5,6,6,7,5335235,06-08-2020,17:00,06-08-2020,17:08,39.5,mobile,3+ times a week,25 - 34 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
179,1,5,4,4,that it keeps you fresh no matter the climate to how hot it gets-no more smelly underarms I love that,n/a,make it in a variety of fragrances ,3,2,4,5,5,2,2,1,1,1,4,4,5,7,7,5386601,06-08-2020,17:01,06-08-2020,17:04,15.18181818,desktop,3+ times a week,25 - 34 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
180,1,4,3,2,I like that it will help you feel more comfortable and fresher when you start to get too hot. As well as leaving you feeling a little more comfortable it should also leave you feeling more confident when your commute ends as you won't feel so sweaty/sticky.,"Nothing I dislike but not sure how the ingredients would give a cooling sensation and would be concerned that there would only be enough cooling ingredients to release once, leaving you without any product action later in the day.","Hard to tell from only this information but I would want to know what the cooling ingredients were, how they work/cool and if the product would be reactive for the day, not just once.",3,4,5,5,5,3,1,1,1,1,4,7,7,6,6,5335432,06-08-2020,17:03,06-08-2020,17:12,52.90909091,desktop,Never,35 - 44 years,I don’t have any children,UK,Roll-on,Yes,"I use it most days, but not every day",Female,Non-sweater,It prevents / controls against wetness
181,1,5,3,5,I like the sound of it but where on the body will it be most effective. I can underatnd underarm but where I have worked in hot and humid environments my shirt front and back can get very sweaty.,Not sure just how overall its effectiveness will be.,Releases cooling ingredients wherre it is applied? Spray on easier than a roll on.,5,5,5,4,4,1,1,1,1,2,7,7,6,6,5,6901576,06-08-2020,17:03,06-08-2020,17:16,66,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Stick,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
182,1,4,4,4,nice innovations being carried out,Nothing in particular,No,4,4,4,5,4,1,1,1,1,1,6,6,5,6,6,7590366,06-08-2020,17:04,06-08-2020,17:06,10.16666667,desktop,3+ times a week,45 - 54 years,One,India,Pump spray,Yes,I use it multiple times a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
183,1,4,4,3,the extra release of ingredients to help reduce sweat and help better control.,n/a,n/a,3,4,4,5,5,3,1,1,1,1,1,6,7,7,7,7676251,06-08-2020,17:04,06-08-2020,17:07,18.36363636,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against wetness
184,1,3,2,3,I like the concept it sounds ideal for the conditions mentioned,There is no indication of how this would be packaged and actually used. An ice cube seems a strange concept for carrying around to use when needed,n/a,3,4,4,4,4,3,2,1,2,1,3,4,5,5,5,7675919,06-08-2020,17:05,06-08-2020,17:23,89.5,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,"I use it most days, but not every day",Female,Anxious sweater,It prevents / controls against odour
185,1,5,4,5,The product will release cooling ingredients based on body temperature is fantastic. It is a perfect product for Mumbai where the climate is not and humid for almost the whole year.,The product should actually work.,It should release some fragrances along with the cooling ingredients.,4,5,4,5,5,2,1,1,1,1,4,6,7,7,7,7719184,06-08-2020,17:05,06-08-2020,17:23,86.5,desktop,Twice a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It cares for my skin
186,1,2,3,2,nothing,bland,na,2,1,2,1,1,2,1,2,2,1,3,2,2,3,2,5361410,06-08-2020,17:07,06-08-2020,17:10,18.33333333,desktop,Once a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,Has a fragrance I like
187,1,3,3,1,unique,unsure how it would work,unsure,3,4,4,5,5,3,2,1,1,1,4,4,5,6,6,5378111,06-08-2020,17:07,06-08-2020,17:20,72.54545455,desktop,Never,18 - 24 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
188,1,5,5,5,The cooling capabilities of the product,Nothing ,N/a,4,4,4,4,5,1,1,1,1,2,6,6,6,7,5,8458719,06-08-2020,17:08,06-08-2020,17:11,13.08333333,mobile,3+ times a week,35 - 44 years,Two,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
189,1,5,5,5,the concept of Ice Cube Encaps,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7764080,06-08-2020,17:09,06-08-2020,17:13,22.18181818,desktop,3+ times a week,18 - 24 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
190,1,4,4,4,"Because as it provide the cooling sensation , and have s fragrance and can control the sweat smell",Well there shouldn be natural ingredients if possible,n/a,4,4,4,4,4,1,1,3,1,1,6,6,6,6,6,8019947,06-08-2020,17:10,06-08-2020,17:22,61.58333333,desktop,3+ times a week,35 - 44 years,Three,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
191,1,4,5,5,Awesome to protect from the environment,Nothing,N/A,4,4,3,4,3,3,4,3,3,3,4,6,5,6,5,7978972,06-08-2020,17:10,06-08-2020,17:15,23.58333333,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
192,1,3,4,4,Natural products,None,No,4,4,4,5,4,2,2,3,1,3,6,6,5,6,6,5340244,06-08-2020,17:11,06-08-2020,17:13,13.08333333,mobile,Less often,25 - 34 years,Two,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Non-sweater,It cares for my skin
193,1,5,2,4,"A COOLING AND SWEET PRODUCT IN ONE, AN EXCELLENT IDEA FOR SUMMER",MUST COME IN DIFFERENT FRAGRANCES ,"MAKE ONE FOR FEMALES AND ONE FOR MALES, BECAUSE OUR BODIES REACT DIFFERENTLY",2,5,4,5,5,5,1,1,1,1,1,7,3,7,7,7605506,06-08-2020,17:14,06-08-2020,17:21,30.75,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
194,1,5,2,5,I like that the deodorant provides a cooling sensation which can be refreshing in hot and humid climates. It will ensure that I feel fresh and in control.,There is nothing I dislike about the product. I am skeptical that it will be activated by my body temperature because it doesn't describe how this works and what temperature activates it.,I would indicate which ingredients provide the cooling sensation and what temperature activates them.,4,4,4,5,5,3,1,1,1,1,2,6,5,7,7,5337277,06-08-2020,17:16,06-08-2020,17:20,22.41666667,desktop,3+ times a week,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
195,1,3,2,2,It sounds refreshing,It does not sound sustainable and won't last long.,"The word ""Ice Cube"" cause it can't really be an ice cube cause Ice will melt...",4,4,4,4,4,3,3,3,2,2,3,5,4,6,5,6898371,06-08-2020,17:16,07-08-2020,07:53,4387.916667,desktop,Twice a week,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
196,1,5,4,5,The product releases cooling ingredients when activated by body temperature ,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7835531,06-08-2020,17:16,06-08-2020,17:23,31.25,desktop,3+ times a week,45 - 54 years,One,India,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
197,1,5,4,5,Keeps sweat under control and keeps feeling cool and fresh,n/a,n/a,4,4,4,5,5,2,2,1,1,1,4,5,6,4,7,8588474,06-08-2020,17:17,06-08-2020,18:01,217.9166667,desktop,3+ times a week,35 - 44 years,Two,Philippines,Stick,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
198,1,4,4,5,I think it is a new kind of product,Is it natural or not,I hope it is natural,5,5,5,5,5,2,1,1,1,1,7,7,7,7,6,7742219,06-08-2020,17:19,06-08-2020,17:26,36.08333333,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It cares for my skin
199,1,5,4,5,Seeing very excellent,Nothing,N/a,4,4,4,4,5,2,1,1,1,1,7,6,5,5,4,7741792,06-08-2020,17:19,06-08-2020,17:24,25.09090909,mobile,Twice a week,35 - 44 years,Two,India,Lotion,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
200,1,5,5,5,It works very well on me,None ,None ,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,5388205,06-08-2020,17:22,06-08-2020,17:23,7.833333333,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it multiple times a day,Female,Excessive sweater,It cares for my skin
201,1,5,5,5,On demand cooling sensation,N/a,The fragrance should also last long. This talks about only cooling sensation. So please do include long lasting fragrance too.,1,5,4,4,5,3,1,1,1,1,3,5,6,6,7,8722742,06-08-2020,17:22,06-08-2020,17:29,33.66666667,mobile,,,,,,,,,,
202,1,4,5,1,Making us fresh in life,nothing to say about,Yes more to like,5,5,5,5,5,5,5,4,5,5,7,6,6,6,7,7561386,06-08-2020,17:23,06-08-2020,17:27,20.27272727,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
203,1,5,5,5,the cooling sensation when I'm getting hot and sweaty and the product doing the thinking for me and acting when I'm ou of control,"Nothing, if it works. Would love to give it a try",Nothing.,3,5,5,5,5,3,1,1,1,1,5,7,7,7,7,6882135,06-08-2020,17:25,06-08-2020,17:28,18.83333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Gel,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
204,1,4,3,3,That it has a cooling effect for when you're in a very hot climate or working out hard.,I am not sure what the ingredients are to make these encaps so I would have to make sure it's natural enough for my sensitive skin.,N/A,1,3,4,4,4,4,2,2,1,1,3,4,5,6,6,8588671,06-08-2020,17:26,06-08-2020,22:05,1393.833333,desktop,3+ times a week,35 - 44 years,One,US,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
205,1,4,3,3,Extra Cooling sensation,Doubt of effectivity during humidity or hot temp,Na,3,4,4,5,5,3,1,1,1,1,4,6,5,6,7,8736422,06-08-2020,17:30,06-08-2020,17:35,28.08333333,mobile,Twice a week,35 - 44 years,Four or more,Philippines,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
206,1,4,2,2,it sounds good,"it will not be a natural product, probably full of aluminium or something to block the pores.",i would say whether or not it was a natural product,1,3,3,4,4,2,2,2,1,1,1,3,3,6,6,6898929,06-08-2020,17:31,06-08-2020,17:40,51.63636364,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
207,1,5,5,5,Perspective,N/a,N/a,4,5,4,5,4,1,1,1,1,1,7,5,6,6,5,8082599,06-08-2020,17:36,06-08-2020,17:39,13.45454545,desktop,,25 - 34 years,,US,,,,Female,,
208,1,5,4,4,It's seems as good and soothing ,Nothing to dislike ,N/a,4,5,5,5,4,3,1,1,1,1,6,7,7,6,6,7765411,06-08-2020,17:37,06-08-2020,17:43,29.16666667,mobile,,25 - 34 years,One,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,
209,1,5,4,5,I like the idea that it gives off a cooling sensation. It gets activated by my body temperature. I sweat a lot under the armpits and I think that's why I don't like wearing shirts anymore. My drawer is filled with tank tops. ,n/a,n/a,2,4,3,5,5,2,1,1,1,1,3,6,5,7,7,7639436,06-08-2020,17:40,06-08-2020,17:45,24.72727273,desktop,Once a week,35 - 44 years,Four or more,US,Stick,Yes,"I use it most days, but not every day",Female,Anxious sweater,It prevents / controls against wetness
210,1,4,4,4,Good relief,Cost,NA,4,4,4,4,4,5,5,4,4,4,6,5,5,6,7,7617887,06-08-2020,17:41,06-08-2020,17:43,10.16666667,mobile,3+ times a week,45 - 54 years,One,India,Lotion,Yes,"I use it most days, but not every day",Male,Normal sweater,It cares for my skin
211,1,5,4,4,keep you fresh when you sweating like hard,n/a,nothing to be really honest ,5,5,5,5,4,2,1,1,1,1,6,7,7,7,7,7561373,06-08-2020,17:43,06-08-2020,17:48,23.66666667,desktop,3+ times a week,25 - 34 years,One,South Africa,Cream,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
212,1,1,1,1,if it actually worked as suggested it might be worth a try,My deodorant is good enough not to need an extra boast,n/a,1,4,1,4,4,5,5,5,1,5,1,7,7,7,7,5384443,06-08-2020,17:44,06-08-2020,17:49,22.08333333,desktop,3+ times a week,55 - 64 years,Two,UK,Stick,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
213,1,5,4,5,the cooling sensation and keeps the body fresh in all the climate,n/a,n/a,5,4,4,4,4,1,1,1,1,1,6,6,6,7,7,7565164,06-08-2020,17:44,06-08-2020,18:16,172.2727273,desktop,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
214,1,5,5,4,the cooling sensation it would provide in all types of climates,n/a,n/a,4,5,5,5,5,3,1,1,1,1,5,7,7,7,7,7833064,06-08-2020,17:46,06-08-2020,17:50,19.91666667,desktop,3+ times a week,18 - 24 years,I don’t have any children,India,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against wetness
215,1,5,4,3,"The fact that it can give you a cooling sensation when it gets very hot, therefore making you more comfortable.",n/a,n/a,5,4,5,1,4,1,1,1,5,1,7,7,7,2,6,6920366,06-08-2020,17:46,06-08-2020,18:11,134.3636364,desktop,Less often,55 - 64 years,I don’t have any children,South Africa,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
216,1,4,1,4,Innovative cooling antipersperant solution. If t works how I envisage.,Unsure will deliver to expectations.,OVerheating not reserved for city commuting. Also applicable to hot dry climates.,4,4,5,5,5,3,2,2,1,1,4,7,7,7,7,6893008,06-08-2020,17:46,06-08-2020,17:56,54.45454545,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I only use it on specific occasions,Female,Light sweater,Has a fragrance I like
217,1,5,4,4,Can be used when ever needed.. very handy and fresh,None,Add aloevera to it,4,5,4,5,5,3,2,1,1,1,6,6,6,7,7,7719402,06-08-2020,17:48,06-08-2020,17:55,36.83333333,mobile,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
218,1,1,1,1,not sure,n/a,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,7309927,06-08-2020,17:48,06-08-2020,17:51,14.58333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
219,1,3,3,3,Not sure if I like anything about it,Not sure if I dislike anything about the product,Not sure I would change anything,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5363977,06-08-2020,17:49,06-08-2020,17:50,7.636363636,desktop,Less often,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
220,1,3,3,3,ice,n/a,n/a,2,2,2,3,2,3,3,3,3,2,5,5,5,5,5,5378622,06-08-2020,17:50,06-08-2020,17:55,25.25,desktop,Less often,25 - 34 years,I don’t have any children,UK,Roll-on,Yes,I only use it on specific occasions,Female,Normal sweater,It prevents / controls against wetness
221,1,5,5,5,very useful,Nothing,na,1,5,5,5,5,4,1,1,1,1,1,7,7,7,7,7554985,06-08-2020,17:51,06-08-2020,17:57,32.27272727,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,"It's free from (aluminium, chemical or fragrance)"
222,1,5,4,4,It sounds like a perfect solution if it actually does what it says,N/a,"Not until I have tried it, then I may see things to change ",4,4,4,5,5,3,1,2,1,1,2,5,6,7,7,7295404,06-08-2020,17:52,06-08-2020,17:59,36.33333333,mobile,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
223,1,3,3,4,its service,Nothing,No,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,7743147,06-08-2020,17:53,06-08-2020,17:56,12.91666667,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Cream,No,I use it at least once a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
224,1,5,3,5,It will be of great help in hot and humid climate. I need such a deodorant.,n/a,n/a,4,5,5,5,5,3,1,1,1,1,5,7,7,7,7,7910345,06-08-2020,17:55,06-08-2020,18:05,47.25,desktop,Twice a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
225,1,3,2,2,"It's intriguing and I have never heard of any product quite like this before. It seems magical because I didn't know a deodorant could ever be activated by body temperature. I didn't know a product like this was possible, which of course makes me feel curious to try it! I also find the idea of cooling ingredients so appealing in summer weather.","As it is such a new and fresh product idea, I would need some convincing it actually worked and there wouldn't be any side effects - I suffer from eczema and sometimes that's flared up badly by deodorant. This sounds like the kind of product that could be strong and would be powerful and may irritate my sensitive skin.",I would make sure the deodorant was applicable to everybody and the ingredients managed to be kind to skin too!,5,2,4,5,5,1,3,3,1,1,7,3,4,6,6,7309519,06-08-2020,17:56,06-08-2020,18:09,60.91666667,desktop,Twice a week,18 - 24 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Light sweater,Has a fragrance I like
226,1,4,4,4,The activation of cooking ingredients,N/a,n/a,3,4,3,4,4,1,1,1,1,1,5,5,6,6,6,7742119,06-08-2020,17:58,06-08-2020,18:01,18.41666667,desktop,Few times a month,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
227,1,4,2,4,"sounds great when you feel a little bit oggy in warm conditions, but does it really work?",if it's not true,n/a,3,4,4,4,5,3,2,1,2,1,4,5,6,7,7,6899785,06-08-2020,18:00,06-08-2020,18:07,31.91666667,desktop,Never,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Male,Non-sweater,It prevents / controls against odour
228,1,4,4,3,Pictorial representation very right,N/a,N/a,4,5,4,4,5,1,1,1,1,1,6,5,7,6,5,8382511,06-08-2020,18:01,06-08-2020,18:03,11.18181818,desktop,,25 - 34 years,,UK,,,,Male,,
229,1,4,4,4,"I will be amazed to use this products. This is the reason , I use talcum powder. They gives cool sensation when we sweat.",n/a,Yes also add some nice fragrance which work as same as this.,5,5,3,4,4,1,1,2,1,2,3,7,5,6,6,8868542,06-08-2020,18:02,06-08-2020,18:07,23.5,desktop,,,,,,,,,,
230,1,5,4,5,Effective in humid & warm weather,Nothing,N/a,1,5,4,5,5,5,1,1,1,1,2,6,6,7,7,7831523,06-08-2020,18:02,06-08-2020,18:15,61.83333333,mobile,3+ times a week,25 - 34 years,One,India,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
231,1,5,5,5,Gives cooling sensation,None,None,4,5,5,5,5,2,1,1,2,1,6,7,7,7,7,7834920,06-08-2020,18:04,06-08-2020,18:07,16.25,desktop,3+ times a week,18 - 24 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
232,1,4,4,3,Cool down and keeps fresh,none,none,4,4,3,4,4,3,3,3,3,3,4,4,4,4,5,5368007,06-08-2020,18:07,06-08-2020,18:11,19.58333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
233,1,5,4,5,I like that it is activated by my body temperature so it works when it is needed.,N/a,N/A,4,4,4,5,5,3,3,2,1,1,4,4,6,7,7,5496489,06-08-2020,18:08,06-08-2020,20:46,790.9166667,mobile,Few times a month,35 - 44 years,I don’t have any children,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
234,1,1,1,1,nothing,seems like just a gimmick,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,6900043,06-08-2020,18:09,06-08-2020,18:10,8.909090909,desktop,Never,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
235,1,4,3,5,Because it keeps my sweats under control and makes me feels refresh. ,Nothing,N/a,5,4,5,5,4,3,2,1,3,2,7,6,6,7,7,7835703,06-08-2020,18:11,06-08-2020,18:16,25.91666667,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
236,1,5,4,4,the one that gives cooling sensation,none,none,4,4,4,4,4,1,1,1,1,1,6,7,7,7,7,7742218,06-08-2020,18:14,06-08-2020,18:18,21.72727273,desktop,3+ times a week,35 - 44 years,One,India,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
237,1,4,3,5,Cooling makes relaxation in hot climate,N/a,"While cooling, it must not shown on clothes",3,5,5,5,5,3,1,1,1,1,3,6,7,7,7,7619214,06-08-2020,18:15,06-08-2020,18:20,27.16666667,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
238,1,1,1,1,nothing,I'm not exactly sure what it is,n/a,1,3,4,4,4,4,3,3,1,1,1,4,4,5,5,5380968,06-08-2020,18:15,06-08-2020,18:24,42.75,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
239,1,5,3,4,That it helps to cool you down when your body temperature rises.,n/a,n/a,4,4,4,4,5,3,1,1,1,1,4,6,6,7,7,6900008,06-08-2020,18:15,06-08-2020,18:20,21.58333333,desktop,Less often,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
240,1,5,,,,,,,,,,,,,,,,,,,,,7619067,06-08-2020,18:18,,,,desktop,Less often,35 - 44 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
241,1,5,2,4,I will like to try this.,n/a,n/a,5,4,4,4,3,2,1,2,2,2,6,5,6,7,6,8658790,06-08-2020,18:20,06-08-2020,18:25,26.25,desktop,,,,,,,,,,
242,1,4,5,4,Promise of the cooling ingredients which get activitated by body temperature.,N/a,"Looks and sounds good, only hope it actually works as mentioned.",5,5,4,5,5,1,1,1,1,1,6,7,7,6,7,7554308,06-08-2020,18:20,06-08-2020,18:26,29.91666667,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
243,1,4,3,3,this will help cope with exercising in summer,n/a,n/a,3,4,4,4,4,3,2,2,2,2,4,5,5,5,5,7589896,06-08-2020,18:21,06-08-2020,18:27,30.09090909,desktop,Twice a week,25 - 34 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
244,1,4,4,3,"It addresses the challenge of a humid climate and needing to wear work clothes and be ""presentable"".",It might have a strange sensation.,n/a,3,4,4,4,5,3,3,3,2,1,3,4,5,4,6,6914847,06-08-2020,18:21,06-08-2020,18:26,21.66666667,desktop,3+ times a week,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
245,1,4,4,4,Eye catching aspects ,N/a,N/a,5,4,5,4,4,1,1,1,1,1,6,6,7,6,7,8474524,06-08-2020,18:25,06-08-2020,18:29,24.63636364,desktop,,,,,,,,,,
246,1,4,4,4,Seems a good product that keeps sweat under control,None so far,n/a,3,4,4,4,4,2,3,3,2,3,4,5,4,5,5,5342423,06-08-2020,18:25,06-08-2020,18:31,33.58333333,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It’s natural / contains natural ingredients
247,1,4,5,5,That keeps sweat under control and which is activated by your body to keep you cool ,N/A,N/A,4,4,5,4,5,1,1,1,1,1,7,7,7,7,7,7605524,06-08-2020,18:27,06-08-2020,18:37,50.5,desktop,3+ times a week,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
248,1,5,5,5,I like te fact in offers cooling sensation when it is most needed.,I worry that the technology might not be as effective as advertised.,NA,5,4,4,5,5,1,1,1,1,1,6,6,7,7,7,5333265,06-08-2020,18:29,06-08-2020,18:36,32.08333333,desktop,Twice a week,25 - 34 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,Has a fragrance I like
249,1,5,5,5,sounds like it will do a great job at controling odors based on the temperture of my body,nothing,nohting,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5367759,06-08-2020,18:30,06-08-2020,18:38,43.33333333,desktop,3+ times a week,35 - 44 years,Four or more,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
250,1,4,1,5,Look I believe in try new things. It not only help us to understand the products but also sometime provide new solution for our products. I think this will be a nice solution for my humid weather problems.,Unbelievable ,n/a,4,5,4,4,5,3,2,1,1,1,3,7,6,6,5,6984739,06-08-2020,18:31,06-08-2020,18:39,38.75,desktop,3+ times a week,Under 18 years,I don’t have children under the age of 18,US,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
251,1,4,3,3,the release of cooling ingredients,n/a,n/a,3,4,4,5,5,3,2,2,1,1,4,4,6,7,7,6915430,06-08-2020,18:33,06-08-2020,18:44,55.83333333,desktop,Never,35 - 44 years,One,US,Gel,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
252,1,3,4,4,Keeps you fresh in all kinds of tempreture.,N/A,N/A,2,2,4,4,4,1,1,1,1,1,5,6,7,7,6,7605554,06-08-2020,18:37,06-08-2020,18:49,58.33333333,mobile,Never,45 - 54 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
253,1,4,3,4,uses a product that will help to cool you when it gets hot,n/a,n/a,4,5,5,5,5,3,1,1,1,1,5,6,6,7,7,5361174,06-08-2020,18:40,06-08-2020,20:11,453.3333333,desktop,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
254,1,4,4,4,The cooling sensation. ,"I don't like his name, Balu. ",Call him Rob,4,4,4,4,3,1,1,1,2,2,6,6,6,4,5,5435000,06-08-2020,18:42,06-08-2020,18:51,50.45454545,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,
255,1,3,4,4,IT MAY GIVE COOLING EFFECT,NONE,N/A,4,4,4,4,4,4,2,2,2,3,4,4,5,5,5,7741974,06-08-2020,18:46,06-08-2020,18:50,21,desktop,Less often,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,No,"I use it most days, but not every day",Female,Light sweater,It prevents / controls against odour
256,1,4,3,3,Handling Body temperature,On demand,NO,4,4,4,4,4,3,1,1,1,1,5,5,6,6,6,7763505,06-08-2020,18:50,06-08-2020,18:55,25.27272727,desktop,Few times a month,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
257,1,4,4,4,Ice Cube Encaps,Nothing,Nope,3,4,3,4,5,1,1,1,1,1,5,6,6,6,5,8054435,06-08-2020,18:57,06-08-2020,19:12,75.41666667,desktop,,35 - 44 years,,India,,,,Male,,
258,1,5,4,3,"The product description sounds convincing, I would like to give it a try .",n/a,n/a,4,4,4,4,5,2,1,1,1,1,6,6,6,7,6,7618200,06-08-2020,18:58,06-08-2020,19:08,48.16666667,mobile,3+ times a week,25 - 34 years,Two,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,Has a fragrance I like
259,1,5,5,5,the ingredients in the deodorant cool the body temperature and avoid you to release smelly sweat ,n/a,n/a,5,5,5,5,5,5,1,1,1,1,3,7,7,7,7,6904984,06-08-2020,18:59,08-08-2020,21:42,16598.72727,mobile,Few times a month,45 - 54 years,One,South Africa,Cream,Yes,I use it multiple times a day,Female,Normal sweater,It cares for my skin
260,1,4,4,5,"This product ensures providing extra cooling sensation like a deodorant but with more cooling effect, it seems to act on its own after being activated by the body temperature, which is easier to maintain than applying a deodorant,",n/a,n/a,4,5,4,5,5,2,1,1,1,1,6,7,5,7,7,7763867,06-08-2020,18:59,06-08-2020,19:09,48.33333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
261,1,5,4,5,It makes cool with fresh fragrance after body sweating ,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7742277,06-08-2020,19:08,06-08-2020,19:17,46.16666667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,India,Pump spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
262,1,5,4,4,Having active cooling ingredients,Nothing,N/A,4,5,4,5,5,1,1,1,1,1,6,7,6,6,6,7590313,06-08-2020,19:15,06-08-2020,19:19,22.5,mobile,Twice a week,35 - 44 years,Four or more,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
263,1,5,5,5,It is very new and different,nothing,No,3,5,4,5,5,3,3,3,3,3,7,7,7,7,7,9038828,06-08-2020,19:15,06-08-2020,19:20,21.58333333,desktop,,,,,,,,,,
264,1,3,3,1,"Intriguing idea, can see useful",Seems implausible,No,4,4,5,5,5,2,3,3,1,1,5,7,6,5,7,5377747,06-08-2020,19:17,06-08-2020,19:26,52.45454545,mobile,Never,35 - 44 years,One,UK,,No,I rarely / never use deodorant,Female,Light sweater,I don't use any
265,1,4,4,4,Cooling sensation....during commute,n/a,n/a,4,4,4,4,4,2,1,1,1,1,6,6,6,6,6,7812639,06-08-2020,19:17,06-08-2020,19:26,52.27272727,mobile,3+ times a week,35 - 44 years,Three,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
266,1,4,2,4,That the product starts working when activated by your body temperature. I sweat alot so I would like this alot on hot days while out and about.,I does not seem very believable. And it sounds like it might be harmful in some way like it would require some type of unnatural chemicals.,N/A,3,4,4,4,4,3,1,1,2,3,3,5,5,5,4,5436797,06-08-2020,19:18,06-08-2020,19:27,50.54545455,mobile,Twice a week,18 - 24 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Female,Anxious sweater,
267,1,3,3,3,The cooling sensation,Nothing,No,3,3,2,3,3,3,3,3,2,3,4,4,4,4,4,6922317,06-08-2020,19:18,06-08-2020,19:23,25.66666667,mobile,Never,25 - 34 years,Three,US,Stick,Yes,I use it multiple times a day,Female,Excessive sweater,It cares for my skin
268,1,5,5,5,because it activates the body temperature according to the environment,nothing,nothing,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5373212,06-08-2020,19:18,06-08-2020,19:25,33.41666667,desktop,Twice a week,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Non-sweater,It prevents / controls against odour
269,1,5,5,5,Wow the concept is so fresh and interesting. Cooling ingredients including menthol when released not only will eliminate odour but also will keep us fresh and cool at the same time. India has a very hot and humid climate most of the year and this product if implemented and brought into the market will not only get to see a huge rush inorder to own it but also people would seriously love to buy it. Most of the deodorants available in the market claims to eliminate odour but when the time comes the product fails to justify. If this product justifies it's claim then I'm very sure it will rule the Indian Market for sure.! Eagerly waiting for this product.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7589877,06-08-2020,19:26,06-08-2020,19:46,100.9166667,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,"It's free from (aluminium, chemical or fragrance)"
270,1,4,4,3,Well from what the ad says i would have to say that i think that i would like it as long as it does what it says.,na,From i have read about the product no i don't think that i would change anything.,1,5,4,5,5,4,1,1,1,1,1,7,7,7,7,6904083,06-08-2020,19:26,06-08-2020,20:06,199.25,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
271,1,5,5,5,It is a different product,nothing,no,5,5,5,5,5,1,1,1,1,1,4,4,4,4,4,9038595,06-08-2020,19:28,06-08-2020,19:30,13,desktop,,,,,,,,,,
272,1,5,4,4,Controlling the sweat in hot weather and keeping cool,n/a,n/a,3,4,4,5,5,3,1,1,1,1,4,6,5,7,7,7589965,06-08-2020,19:29,06-08-2020,20:42,366.8333333,mobile,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It’s natural / contains natural ingredients
273,1,4,4,4,"The thought that it goes to work, when you get hot",n/a,n/a,3,4,4,5,5,3,1,2,1,1,4,5,5,7,7,5360967,06-08-2020,19:35,06-08-2020,19:39,19.83333333,desktop,Less often,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
274,1,4,4,4,It is working based on individuals body heat which is more important to have great control on sweating.,n/a,Yes. I would like to add some fragrance .,3,5,5,5,4,3,1,1,1,1,5,7,7,7,7,7910550,06-08-2020,19:36,06-08-2020,19:48,58.5,desktop,Once a week,35 - 44 years,Two,India,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
275,1,4,4,4,Easy to use,Product packaging,N/a,4,4,4,5,4,2,1,3,1,1,6,6,6,6,6,5348142,06-08-2020,19:37,06-08-2020,19:40,13.58333333,mobile,3+ times a week,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
276,1,3,4,2,The concept is nice,"not sure if I would like a cooling sensation all of a sudden, i just dont know",no,1,2,2,5,5,5,2,2,1,1,3,4,4,7,7,7618396,06-08-2020,19:40,06-08-2020,19:43,14.41666667,mobile,Twice a week,25 - 34 years,Two,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
277,1,2,2,1,It's a unique idea that seems new to the market.,Seems like it just wouldn't really work to cool you down. Night make the under arm area irritated.,n/a,4,4,4,5,5,1,1,1,1,1,3,6,6,7,7,7619043,06-08-2020,19:40,06-08-2020,19:46,28.41666667,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
278,1,5,4,5,"Providing extra deodorant type cooling sensation which releases ingredients to cool the body when it's temperature rises automatically, it's a product which definitely would like to try,",N/a,"If it can be used in other parts of the body as well, if not would make it that way,",4,5,4,4,4,1,1,2,1,1,5,6,5,7,7,8604431,06-08-2020,19:43,06-08-2020,20:04,108,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It’s natural / contains natural ingredients
279,1,5,5,5,"I really liked how this product will keep me cool and refreshed even in the hot and humid temperature of the city. I also face the same problem as balu, so it's good to know that a new product like this can be made available soon in the market for people like me and balu.","Nothing much to dislike before trying it, but I do hope that it is just as effective and environmentally friendly as it is made out to be.","I would not change much in terms of ingredients or product, but would like to increase the cooling sensation period to atleast a whole day so that I would feel refreshed throughout the day and not just few hours.",4,5,4,5,5,2,1,1,1,1,6,7,6,7,7,8871754,06-08-2020,19:44,06-08-2020,19:55,56.33333333,mobile,,,,,,,,,,
280,1,4,4,4,it releses ingredients all day to keep cool,na,na,4,4,4,4,4,3,3,2,2,2,5,5,5,6,6,5364954,06-08-2020,19:44,06-08-2020,19:55,54.58333333,desktop,3+ times a week,35 - 44 years,One,Australia,Roll-on,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
281,1,4,4,5,its cooling effect,n/a,n/a,4,5,4,4,5,1,1,1,1,1,6,6,5,7,6,6893696,06-08-2020,19:45,06-08-2020,19:54,44.5,desktop,3+ times a week,35 - 44 years,Three,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
282,1,5,4,5,"It can you cool especially with added ice-cubes, sure it should be better than other deoderants","Nothing, I think it is just right","There's nothing better to live the expects with what they know better, I wouldn't change anything!",3,5,5,5,5,3,1,1,1,1,4,7,7,7,7,5363406,06-08-2020,19:45,06-08-2020,19:53,38.58333333,desktop,Few times a month,35 - 44 years,One,South Africa,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
283,1,5,5,5,cool you down,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5374682,06-08-2020,19:48,06-08-2020,19:52,22.08333333,desktop,Twice a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
284,1,4,4,4,That it's able to cool me down during hot days.,N/a,N/a,4,4,4,5,5,1,1,1,1,1,5,6,6,7,7,5363717,06-08-2020,19:48,06-08-2020,19:52,20.41666667,mobile,Twice a week,35 - 44 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
285,1,5,5,5,good product,nothing,NA,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,9039048,06-08-2020,19:49,06-08-2020,19:50,9.454545455,desktop,,,,,,,,,,
286,1,5,3,4,Great idea to keep you cool,Nothing ,Nothing ,4,4,4,5,5,3,1,2,1,1,4,5,5,7,7,5369817,06-08-2020,19:49,06-08-2020,19:52,12.83333333,mobile,Never,35 - 44 years,Two,UK,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
287,1,4,4,5,The cooling sensation on demand,No,No,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,7590290,06-08-2020,19:52,06-08-2020,19:58,29.66666667,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,No,I use it at least once a day,Female,Light sweater,It cares for my skin
288,1,4,4,5,It's easy to use ,Nothing to dislike ,No nothing,5,4,5,4,4,1,1,3,1,1,7,7,7,7,7,5333788,06-08-2020,19:52,06-08-2020,19:58,30.58333333,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It’s natural / contains natural ingredients
289,1,5,3,5,it addresses something I really need,n/a,n/a,5,5,4,5,5,2,2,1,1,1,6,5,6,7,7,5381596,06-08-2020,19:55,06-08-2020,20:01,32.41666667,desktop,3+ times a week,45 - 54 years,Four or more,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
290,1,4,5,5,All concept,None,Nothing ,5,5,5,5,5,1,1,4,1,5,7,7,7,7,7,7763641,06-08-2020,19:56,06-08-2020,20:03,34.5,mobile,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,Has a fragrance I like
291,1,1,3,2,cooling sensation,"irrelevant to me, gimmicky",no,3,3,3,5,3,3,3,3,1,1,5,5,5,6,6,5335873,06-08-2020,19:58,06-08-2020,20:13,73.08333333,desktop,3+ times a week,25 - 34 years,One,US,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
292,1,3,3,1,Nothing as I have no idea what an Ice Cube Encap is or how I would use it - it sounds like something very messy,that I have no idea what it is or how it works,how do I apply Ice Cube encaps? This whole thing is meaningless,3,3,3,5,5,3,3,3,1,1,4,5,4,7,7,6899625,06-08-2020,20:00,06-08-2020,20:06,28.91666667,desktop,Twice a week,65 years +,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
293,1,5,4,5,easy to and put on gives you an easy cool feeling,nothing untill i try it out and test it,no changes,4,5,4,5,4,2,3,2,2,3,5,5,6,6,5,5373087,06-08-2020,20:01,06-08-2020,20:06,23.25,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Soft solid (clinical),Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
294,1,4,4,4,the active ingedreint slowly relesraing,na,nA,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,5365786,06-08-2020,20:03,06-08-2020,20:13,48.16666667,desktop,3+ times a week,25 - 34 years,One,Australia,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
295,1,4,5,4,Something i would like to try,n/a,n/a,1,5,5,5,5,1,5,5,1,1,7,7,7,7,7,6912124,06-08-2020,20:11,06-08-2020,20:16,26.27272727,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,,Yes,I rarely / never use deodorant,Female,Light sweater,I don't use any
296,1,5,4,1,It's what I need,Its comman,Yes the ad itself,4,4,4,4,5,1,1,1,1,1,5,6,6,7,7,7605149,06-08-2020,20:13,06-08-2020,20:16,20,mobile,Once a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
297,1,5,4,5,"Almost too good to be true claims, a way to cool my body so I potentially sweat less would be a summer dream come true and add relevant use for this product everyday I go out and about all summer",My only dislike is how this seems too good to work nearly as well as it says. There is a big difference between feeling cooler and sweating less! I would need to see some reviews and such showing how this isn't damaging at all to various body functions and does a good job of keeping things better off on a hot day. ,I would only make sure there are no harsh chemicals or potential ingredient issues with these products,3,5,5,4,4,2,3,1,3,2,3,7,2,2,3,7676265,06-08-2020,20:14,06-08-2020,20:43,144.1666667,desktop,3+ times a week,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
298,1,4,4,4,cooling,nothing,nothing,3,5,4,4,4,1,1,1,1,1,3,6,6,6,6,5333363,06-08-2020,20:14,06-08-2020,20:17,14.91666667,desktop,3+ times a week,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
299,1,5,4,5,The basis of it being cooling will help with my flushes and sweating in enclosed spaces.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,5367387,06-08-2020,20:22,06-08-2020,20:25,15.72727273,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It’s natural / contains natural ingredients
300,1,5,5,5,"I like the new and unique product idea of Ice Cube Encaps giving the deodorant extra on-demand cooling sensation. Cooling ingredients are released when activated by our body temperature, keeping us fresh no matter the climate during our journey.",n/a,n/a,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7670927,06-08-2020,20:23,06-08-2020,20:47,117.5833333,desktop,Few times a month,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It cares for my skin
301,1,4,4,4,los ingredientes,n/a,n/a,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5408195,06-08-2020,20:25,06-08-2020,20:29,20.91666667,desktop,3+ times a week,35 - 44 years,Three,US,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
302,1,5,2,5,Releasing the cooling ingredients when activated by your body temperature,n/a,n/a,3,5,5,5,5,3,1,1,1,1,4,7,7,7,7,8589325,06-08-2020,20:26,06-08-2020,20:37,54.83333333,desktop,Twice a week,25 - 34 years,I don’t have any children,India,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
303,1,3,3,3,activated by body temperature,n/a,n/a,3,4,5,4,4,2,2,1,1,1,4,4,5,6,6,6899558,06-08-2020,20:28,06-08-2020,20:31,17.63636364,desktop,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
304,1,5,2,4,body freshness feeing afteruse. ,n/a,n/a,4,4,5,2,2,1,1,1,1,1,4,4,3,4,4,7741829,06-08-2020,20:28,06-08-2020,20:52,118.9166667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,India,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
305,1,4,4,4,It gives you cooling sensation irrespective of temperature,n/a,n/a,5,5,4,5,4,1,1,2,1,1,7,6,5,7,7,7742151,06-08-2020,20:29,06-08-2020,20:34,24.08333333,desktop,3+ times a week,18 - 24 years,Two,India,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
306,1,4,4,4,information,nothing,n/a,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,6979673,06-08-2020,20:30,06-08-2020,20:33,17,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against wetness
307,1,3,3,3,Extra cooking,Nothing,Na,4,4,4,4,4,3,3,3,3,3,4,5,4,4,4,7981821,06-08-2020,20:30,06-08-2020,20:33,15.5,desktop,,35 - 44 years,,Australia,,,,Male,,
308,1,2,4,1,It gives you a cooling sensation.,It sounds potentially toxic and unnatural.,I'd make the deodorant more natural instead.,2,2,2,2,2,1,1,1,1,1,2,2,2,6,6,8588716,06-08-2020,20:35,06-08-2020,20:38,15.33333333,desktop,Twice a week,25 - 34 years,I don’t have any children,US,Soft solid (clinical),Yes,I use it at least once a day,Male,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
309,1,4,4,4,image,none,n/a,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,5364987,06-08-2020,20:41,06-08-2020,20:45,18.25,desktop,Twice a week,35 - 44 years,Four or more,US,Gel,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
310,1,3,5,1,It is an interesting concept but it sounds like it would have a lot of chemicals in it,I think it would have a lot of chemicals and the ingredients are not described above,If it was organic and natural I woul be more interested (plus mo aluminum).,3,3,3,3,5,3,3,3,3,1,1,4,4,5,7,6946988,06-08-2020,20:42,06-08-2020,20:45,18.83333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,US,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
311,1,4,5,4,"Very new and appealing, different product on the market ",Nothing ,Nothing comes mind ,4,5,5,4,4,1,1,1,1,1,6,6,5,6,6,5337782,06-08-2020,20:42,06-08-2020,20:45,14.16666667,mobile,Twice a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
312,1,4,4,3,attractive,nothing disgusts me, n/a,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,5337170,06-08-2020,20:49,06-08-2020,20:52,15.33333333,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
313,1,3,3,3,You keep your cool and feel no fool,n/a,n/a,4,3,4,4,4,2,2,2,1,1,5,4,6,6,6,5382276,06-08-2020,20:51,06-08-2020,20:57,29.27272727,desktop,3+ times a week,65 years +,I don’t have any children,UK,Roll-on,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
314,1,5,5,5,I like that it has a cooling sensation for very hot days or I could put on after working out.,Do not dislike anything about it,I would not change anything about it,4,4,4,4,5,4,1,1,1,1,1,7,6,5,7,8588911,06-08-2020,20:53,07-08-2020,08:43,3553.75,desktop,3+ times a week,18 - 24 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
315,1,4,4,4,A Product that can keep my sweat and body odour under control ,Nothing to be disliked,N/A,5,4,5,5,5,1,1,1,1,1,5,6,6,7,6,7619212,06-08-2020,20:53,06-08-2020,21:01,39.25,desktop,Never,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
316,1,3,4,3,cooling,sounds cold and wet,np,4,3,4,4,4,2,2,2,1,1,5,5,5,5,5,5374822,06-08-2020,20:55,06-08-2020,21:09,70.91666667,desktop,Less often,25 - 34 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
317,1,5,4,5,i think the product is genuine itslef from its side and also the quality is top the notch than others,there is nothing to be dislike about this product,i think i would like the change of the materials being used in this item and also the way of the advertising requirements as well.,5,5,4,4,5,5,4,5,5,5,6,6,7,6,5,7832219,06-08-2020,20:55,06-08-2020,20:59,18.33333333,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Roll-on,No,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
318,1,5,3,5,Cooling to keep you fresh,Nothing ,N/a,4,4,4,5,5,2,1,1,1,1,6,6,6,6,6,5431370,06-08-2020,20:58,06-08-2020,21:03,25.66666667,mobile,3+ times a week,25 - 34 years,Three,US,Gel,Yes,I use it at least once a day,Female,Light sweater,
319,1,4,4,5,I like every thing,no nothing,no nothing,4,4,4,4,5,4,4,4,2,5,6,5,5,5,4,6985354,06-08-2020,21:03,06-08-2020,21:07,17.5,desktop,3+ times a week,35 - 44 years,One,US,Gel,Yes,I use it multiple times a day,Male,Heavy sweater,It cares for my skin
320,1,4,1,1,Would be a nice product if it was possible ,It’s a pleasant pipe dream. ,No,3,4,4,5,5,2,2,2,1,1,4,4,4,7,6,7618804,06-08-2020,21:04,06-08-2020,21:15,56.83333333,mobile,3+ times a week,35 - 44 years,I don’t have children under the age of 18,South Africa,Stick,Yes,"I use it most days, but not every day",Female,Heavy sweater,It prevents / controls against wetness
321,1,5,2,5,It sounds very innovative and different to what I have heard of before. My main draw is that it is a deodorant (not anti perspirant) and that it actively helps you keep cool,There is nothing that I dislike,I would add more detail as to how it works and that it is still safe on skin and on clothes too,4,4,4,1,5,1,1,1,4,1,6,7,7,3,7,6899308,06-08-2020,21:04,06-08-2020,21:11,33.83333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
322,1,4,3,4,the idea of the cooling release when its needed,n/a,n/a,3,5,5,5,5,2,1,1,1,1,1,7,7,7,7,6901418,06-08-2020,21:09,06-08-2020,21:17,43.09090909,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
323,1,4,4,5,good for body temperature,nothing,nothing,5,5,4,4,4,5,5,4,4,4,6,7,6,6,7,5369545,06-08-2020,21:10,06-08-2020,21:12,12.83333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
324,1,3,4,3,The product can make me feel cool while also giving me sweat protection.,n/a,n/a,3,4,4,4,4,3,3,1,1,1,4,4,4,6,6,8595831,06-08-2020,21:11,06-08-2020,21:14,15.5,desktop,3+ times a week,35 - 44 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
325,1,3,4,3,The cooling effect,Putting ice on my face might not work for other people,n/a,5,4,4,4,4,1,1,1,1,1,6,7,6,6,7,5335734,06-08-2020,21:12,06-08-2020,21:18,33.83333333,mobile,3+ times a week,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Female,Non-sweater,It prevents / controls against odour
326,1,4,4,4,features,nothing disgusts me here,n/a,4,4,4,4,4,2,1,2,1,2,6,6,6,6,6,5364820,06-08-2020,21:12,06-08-2020,21:23,55.16666667,desktop,Twice a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It does not cause white marks / stains on skin or clothes
327,1,5,2,4,the idea that you won't sweat & you'll feel cool,not knowing how it'll feel to be cool from this product,n/a,3,4,4,5,5,3,1,1,1,1,4,5,6,7,7,5368543,06-08-2020,21:20,06-08-2020,21:24,18.16666667,desktop,Once a week,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
328,1,5,4,5,Very nice and effective. ,N/A,N/A,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7743170,06-08-2020,21:20,06-08-2020,21:31,53.08333333,desktop,Less often,35 - 44 years,I don’t have any children,India,Roll-on,Yes,I use it multiple times a day,Female,Excessive sweater,It prevents / controls against wetness
329,1,5,5,2,Because is help for sweating and odour ,I don't have dislike ,N/A,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,6920491,06-08-2020,21:27,06-08-2020,21:30,17.66666667,mobile,3+ times a week,35 - 44 years,Two,South Africa,Pump spray,Yes,I use it multiple times a day,Female,Normal sweater,Has a fragrance I like
330,1,4,3,4,soiunds good if it works,nothing,nothing,3,4,4,5,5,3,2,1,1,1,4,5,5,7,7,6904011,06-08-2020,21:27,06-08-2020,21:51,120,desktop,Never,45 - 54 years,Three,US,Stick,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
331,1,4,4,4,Sounds great to have a cooling release product on demand by detecting increased body temperature.,No dislikes with Ice Cube Encaps.,It would be nice to include a refreshing and cooling wipe for your face and neck.,5,4,5,5,5,3,4,5,1,1,6,7,7,6,6,5395127,06-08-2020,21:29,06-08-2020,21:35,29.83333333,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,US,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
332,1,5,4,5,"I like the idea that it offers a feeling of coolness to keep fresh, and that it will react based on body temperature. ","I’d just want to know how it works, what the product actually is, and what the ingredients are. ",Not sure as yet as I would want to know a little more. ,1,4,4,5,5,5,2,2,1,1,1,6,6,7,7,5347914,06-08-2020,21:31,06-08-2020,21:43,61,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Stick,Yes,I use it at least once a day,Female,Anxious sweater,It’s natural / contains natural ingredients
333,1,4,3,1,the the cooling takes place when the body temperature is hotter. it solves a problem that otherwise would have continued to go unsolved. it keeps sweat under control and feels fresh.,"i am not sure if this product could actually deliver on these promises, only time will tell.",n/a,3,4,4,4,4,2,1,1,1,1,3,5,6,6,6,5351811,06-08-2020,21:33,06-08-2020,21:51,87.83333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I only use it on specific occasions,Male,Normal sweater,Has a fragrance I like
334,1,5,4,4,I like that it is something that will help me feel cool in the heat and humidity of the summer.,N/A,I do not know if I would call them Ice Cube Encaps that is kind of confusing to most people as to what it is or what they are made from.,4,4,4,5,5,1,1,1,1,1,5,6,6,7,7,6920965,06-08-2020,21:33,06-08-2020,21:37,21.36363636,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against wetness
335,2,,,,,,,,,,,,,,,,,,,,,,7294013,06-08-2020,21:39,06-08-2020,21:39,5.5,desktop,Twice a week,45 - 54 years,I don’t have any children,UK,Soft solid (clinical),Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
336,1,5,3,5,"2 in 1 product, my deodorant helps cool me down - I love the idea in this hot weather",n/a,n/a,4,5,3,3,4,1,1,1,2,2,7,7,4,5,6,5350884,06-08-2020,21:40,06-08-2020,21:43,17.66666667,desktop,3+ times a week,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It’s natural / contains natural ingredients
337,1,4,4,3,Second most I like not 1st one,1st is not attractive 2nd is better ,1st can be better ,4,5,4,4,5,1,1,1,1,1,5,6,6,6,7,7670973,06-08-2020,21:41,06-08-2020,21:47,31.41666667,mobile,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
338,1,3,3,3,on-demand cooling sensation,unsure,n/a,2,4,3,3,3,2,2,2,3,3,5,4,3,5,4,5378094,06-08-2020,21:41,06-08-2020,21:43,9.25,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,US,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,It cares for my skin
339,1,5,4,5,that it will cool you down,i am concerned it would be sticky,fragrance selection,3,4,4,5,5,2,1,1,1,1,5,6,6,7,7,5411269,06-08-2020,21:53,06-08-2020,22:10,82.75,desktop,3+ times a week,45 - 54 years,One,Australia,Soft solid (clinical),Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
340,1,4,3,4,keeps you fresh no matter what,nothing,n/a,3,4,4,5,4,3,2,1,1,1,4,4,6,7,7,6893293,06-08-2020,21:54,06-08-2020,22:00,27.91666667,desktop,Twice a week,65 years +,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
341,1,4,4,4,It makes you feel fresh,N/A,N/a,4,4,4,5,5,2,1,2,1,1,5,5,5,7,7,8597356,06-08-2020,21:56,06-08-2020,21:58,11.08333333,mobile,3+ times a week,45 - 54 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
342,1,4,4,3,its new and different and relevant,nothing,no,4,4,5,4,4,1,1,1,1,1,6,6,6,6,6,7764092,06-08-2020,21:59,06-08-2020,22:02,13.5,mobile,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
343,1,4,3,4,It's activated by body temperature,N/A,N/A,2,4,5,5,3,1,1,1,1,1,3,6,6,6,6,6904657,06-08-2020,22:00,06-08-2020,22:10,46.91666667,desktop,3+ times a week,35 - 44 years,Four or more,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
344,1,4,4,4,on demand cooling sensation,none at all,n/a,5,5,5,5,5,1,1,1,1,1,6,6,5,6,6,5365259,06-08-2020,22:03,06-08-2020,22:05,10.16666667,desktop,Never,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
345,1,3,3,4,Nice,None,No,2,2,3,2,2,2,2,2,2,2,2,2,4,3,3,5390523,06-08-2020,22:09,06-08-2020,22:17,36.91666667,desktop,3+ times a week,25 - 34 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
346,1,4,3,3,"I like the idea of a product that claims to keep you cool in a hot environment, if the claims are true I would use this at night ...going through menopause I get sweats at night. this would be great to try to see if the claims are true ",Nothing to dislike with the description given..however depending on ingredients would depend would depend if I like or dislike Ic Cube Encaps,No I think the description is self explanatory ,3,5,5,4,4,3,1,1,2,2,4,7,7,4,4,8596918,06-08-2020,22:17,06-08-2020,22:27,54.54545455,desktop,Never,45 - 54 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
347,1,3,3,1,I like that it keeps sweat under control and keeps you feeling cool and fresh no matter the climate,I'm not so sure about the cooling ingredients in the deodorant. After having shaven my armpits if I put this deodorant on would they sting. Without knowing what is used in the cooling ingredients I'm a bit dubious about it. It also makes the deodorant sound a lot more manufactured and less natural. ,I don't like the name Ice Cube Encaps - obviously I get the reference to Ice Cube but I don't know what Encaps means. As well Ice Cube seems to be maxing up the cooling element a bit much for my liking. ,1,3,4,5,5,4,3,3,1,1,1,2,2,7,7,7590295,06-08-2020,22:18,06-08-2020,22:28,50.08333333,desktop,3+ times a week,55 - 64 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
348,1,4,3,3,what it does,not sure?does the product do what it says and what ingredients are in to provide this cooling effect?????,no,4,4,4,4,4,1,1,1,1,3,4,4,4,4,4,8590078,06-08-2020,22:19,06-08-2020,22:24,23.83333333,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,Australia,Roll-on,No,I only use it on specific occasions,Female,Light sweater,Has a fragrance I like
349,1,4,3,3,on demand cooling sensation activated by body temp.,none yet,n/a,4,4,4,4,4,2,1,1,1,1,5,6,5,6,6,8589878,06-08-2020,22:22,06-08-2020,22:29,33.25,desktop,Less often,45 - 54 years,One,Philippines,I don't use any,No,I rarely / never use deodorant,Male,Non-sweater,I don't use any
350,1,4,4,5,Adjusts to different situations,probably contains some nasties,none,4,4,4,4,4,2,2,2,1,2,5,5,5,7,6,5337165,06-08-2020,22:22,06-08-2020,22:28,32.45454545,desktop,Never,35 - 44 years,I don’t have any children,Australia,Cream,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
351,1,5,4,5,The cooling effect,n/a,n/a,4,5,5,5,5,2,2,1,1,1,5,6,7,7,7,6900518,06-08-2020,22:28,06-08-2020,22:31,16.18181818,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Soft solid (clinical),Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
352,1,4,4,5,the fact that when you put it on your body the temperature of your body activates it to cool down,nothing I dislike,n/a,5,5,5,4,4,1,1,1,1,1,7,7,7,7,7,7618485,06-08-2020,22:32,06-08-2020,22:37,22.5,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,Australia,Soft solid (clinical),Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
353,1,5,5,5,"you creating a new deodorant with extra on -demand cooling sensation, the extra bit works when your body temperature raises to keep you feeling fresh",nothing to dislike,i wouldn't change a thing of it,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,6901173,06-08-2020,22:33,10-08-2020,21:04,30928.81818,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,"It's free from (aluminium, chemical or fragrance)"
354,1,5,4,5,it releases cooling ingredients as your body temperature rises.,"nothing, the way the product designer explained it was crystal clear.",Does it still smell nice?,3,5,5,5,5,2,1,1,1,1,6,7,7,7,7,7619281,06-08-2020,22:45,06-08-2020,22:52,33.66666667,desktop,Never,45 - 54 years,One,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
355,1,4,3,3,Ice Cube Encaps will provide an on-demand extra cooling sensation in the body to fight hot and humid city environment .,I am a bit reluctant in believing about such a product with cooling sensation which will really work in hot and humid climate and will provide the desirable results.,n/a,4,4,4,5,5,2,1,1,1,1,6,7,7,7,7,8723109,06-08-2020,22:46,06-08-2020,22:57,57.91666667,desktop,,,,,,,,,,
356,1,5,5,5,"The product provides cooling sensation when activated by the body temperature. So, it helps to keep body under the right temperature. ",n/a,I would like the product to also provide protection from odour and wetness. ,5,5,5,5,5,2,1,1,1,1,6,6,6,7,7,7974700,06-08-2020,22:47,06-08-2020,22:59,58.41666667,mobile,,25 - 34 years,,India,,,,Male,,
357,,,,,,,,,,,,,,,,,,,,,,,8588484,06-08-2020,22:47,,,,desktop,Twice a week,45 - 54 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Anxious sweater,It’s natural / contains natural ingredients
358,1,3,4,1,It is innovative and may suit some,I don't think the cooling sensation will stop the sweating,Nothing. It's a niche in the market so might do well,1,2,4,5,5,3,3,3,1,1,2,3,3,7,7,7618128,06-08-2020,22:51,06-08-2020,22:55,21.75,mobile,3+ times a week,35 - 44 years,Three,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
359,1,3,3,2,UNSURE,UNSURE,N/A,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5390179,06-08-2020,22:55,06-08-2020,22:57,14.72727273,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
360,1,4,3,3,It helps to control my sweat.,It doesn't tell me how long does it last.,Include how long will it last.,4,4,4,5,5,3,3,1,1,1,5,5,6,7,7,5446082,06-08-2020,22:59,06-08-2020,23:27,135.9166667,desktop,Few times a month,45 - 54 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
361,1,4,2,2,It is activated by your body temperature ,N/A,N/A,3,4,4,5,5,3,1,1,1,1,4,5,7,7,7,5337891,06-08-2020,23:03,06-08-2020,23:09,28.33333333,desktop,Less often,55 - 64 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
362,1,4,4,4,If its keep you cool and and fresh during the hot weather i would give it a try.,None,I wouldn't change it only after I try and see if its works for me,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,5336947,06-08-2020,23:04,06-08-2020,23:09,25.91666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,Has a fragrance I like
363,1,5,5,5,"I work in a pre school, i often sweat and i am always moving and on my feet, most of the time is hot, so this product would come in handy. I need a product i can rely on.",N/a,Na,4,5,5,5,5,1,1,1,1,1,6,7,7,6,7,7605688,06-08-2020,23:04,06-08-2020,23:12,42.08333333,mobile,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It’s natural / contains natural ingredients
364,1,1,1,1,nothing,everything,yes,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,6901157,06-08-2020,23:05,06-08-2020,23:08,13.81818182,desktop,Never,65 years +,I don’t have children under the age of 18,UK,I don't use any,No,I rarely / never use deodorant,Male,Heavy sweater,
365,1,5,4,4,Cooling sensation.,n/a,n/a,4,4,4,5,5,2,1,1,1,1,6,6,6,6,6,5367089,06-08-2020,23:16,06-08-2020,23:20,19.72727273,desktop,Less often,25 - 34 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
366,1,5,4,4,Innovative ,Nothing ,Nothing ,5,4,5,5,5,2,2,1,1,1,5,5,7,7,7,6922776,06-08-2020,23:19,06-08-2020,23:23,17.41666667,mobile,Twice a week,35 - 44 years,One,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
367,1,5,4,4,The cooling effect sounds great,n/a,n/a,4,4,4,5,5,1,1,1,1,1,7,7,6,7,7,5434932,06-08-2020,23:31,06-08-2020,23:35,18.75,desktop,3+ times a week,35 - 44 years,I don’t have any children,US,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
368,1,4,2,4,"it activates when needed, keeps me cool",nothing,n/a,4,4,5,5,5,2,2,1,1,1,4,4,7,7,7,6898421,06-08-2020,23:35,06-08-2020,23:45,52.41666667,desktop,Once a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
369,1,4,4,4,"That this deodorant delivers a cooling sensation for those hot, humid days.",Not sure but are they any nasty chemicals in this product?,n/a,4,4,4,5,5,1,1,1,1,1,5,5,5,6,6,5371312,06-08-2020,23:40,06-08-2020,23:43,18.41666667,desktop,Few times a month,45 - 54 years,Two,Australia,Pump spray,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
370,1,3,2,2,works when its really needed,my be too cold,no,3,2,2,4,3,1,1,1,1,1,6,5,5,6,6,5365330,06-08-2020,23:42,06-08-2020,23:47,23.75,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
371,1,3,2,1,i'm not sure because I don't know what is in Icube End Capd,"very sketchy product details, ",make this a afteer wash colone and spreadi all over the torso,3,3,2,3,4,1,2,3,3,3,6,5,5,5,5,6983243,06-08-2020,23:50,06-08-2020,23:55,31.09090909,desktop,Less often,55 - 64 years,I don’t have any children,US,Gel,Yes,"I use it most days, but not every day",Male,Excessive sweater,It prevents / controls against wetness
372,1,2,3,1,,,,,,,,,,,,,,,,,,,5405624,06-08-2020,23:53,,,,desktop,Few times a month,65 years +,I don’t have any children,Australia,Stick,Yes,I use it at least once a day,Male,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
373,1,4,4,4,Cooling in hot sticky weather is ideal,n/a,n/a,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,5370791,07-08-2020,00:12,07-08-2020,00:14,10.75,desktop,Once a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,It prevents / controls against wetness
374,1,4,3,4,Ice cube encaps gives very effective cooling to overcome the problem of Balu and it;s effective option for every body.,Nothing to dislike.,N/A,5,4,4,5,4,3,5,2,4,4,7,6,7,6,6,5501931,07-08-2020,00:15,07-08-2020,00:28,63.08333333,desktop,3+ times a week,55 - 64 years,One,South Africa,Gel,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
375,1,4,4,4,Cooling sensation,n/a,n/a,3,4,3,5,4,3,2,3,1,2,4,5,4,7,6,8663990,07-08-2020,00:16,07-08-2020,00:21,22.25,mobile,Less often,25 - 34 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
376,1,4,5,4,it sounds like it would be effective in hot and humid climates,n/a,n/a,4,4,4,4,4,2,2,2,1,1,5,5,5,6,6,5402625,07-08-2020,00:37,07-08-2020,00:58,104.25,desktop,3+ times a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
377,1,5,2,4,That works based on my temperature to keep me fresh,n/a,n/a,3,4,5,5,5,3,2,2,1,1,2,6,7,7,7,6925884,07-08-2020,00:40,09-08-2020,03:35,15275.41667,mobile,3+ times a week,25 - 34 years,Two,US,Stick,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
378,1,4,4,4,Seems a cooling effect will do in a hot and humid environment specifically,not much may be mostly preferred for summer,not much,4,4,4,4,4,4,3,4,4,1,4,5,5,5,5,5337116,07-08-2020,00:40,07-08-2020,00:44,19.33333333,desktop,Twice a week,55 - 64 years,One,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It does not cause white marks / stains on skin or clothes
379,1,5,3,5,"Since I also live in a hot and humid place, a deodorant that can help me feel cool during a hot day is very appealing to me. ",n/a,n/a,3,4,4,5,5,2,1,1,1,1,5,6,6,7,7,8636525,07-08-2020,00:41,07-08-2020,00:48,36.66666667,desktop,Less often,25 - 34 years,Two,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
380,1,5,5,5,all of it,nothing,n/a,4,4,4,4,4,3,3,3,3,3,5,5,5,5,5,5337704,07-08-2020,00:41,07-08-2020,00:42,5,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
381,1,3,3,1,not that appealing ,"not necessary, overthinking sweating problems",i would not buy or use,3,3,3,3,3,3,3,3,3,3,4,3,3,3,4,5500049,07-08-2020,00:42,07-08-2020,00:44,11.83333333,desktop,Twice a week,45 - 54 years,Two,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
382,1,5,5,5,"Less sweat on a hot, humid day. Cools your body.",dk,Sounds great the way it is.,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5347024,07-08-2020,00:44,07-08-2020,00:57,69.5,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I only use it on specific occasions,Female,Anxious sweater,It prevents / controls against odour
383,1,5,5,5,It seems like an innovative product,None,n/a,5,5,5,5,5,2,2,2,3,3,6,6,5,6,6,7561427,07-08-2020,01:01,07-08-2020,01:04,13.58333333,desktop,3+ times a week,25 - 34 years,I don’t have any children,US,Gel,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
384,1,5,5,5,everything,nothing,nothing,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,5413296,07-08-2020,01:01,07-08-2020,01:05,20.27272727,desktop,Never,35 - 44 years,Three,Australia,Roll-on,Yes,I only use it on specific occasions,Female,Non-sweater,It cares for my skin
385,1,5,3,5,"There are definitely times.... traveling using public transportation, kayaking and camping in summer, tons of other examples where I could use a quick cooling boost",Nothing. Just doubtful if it working ,N/a,4,5,5,5,5,1,1,1,1,1,6,6,6,7,7,5335519,07-08-2020,01:07,07-08-2020,01:12,23.83333333,mobile,Twice a week,45 - 54 years,I don’t have children under the age of 18,US,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
386,1,3,3,3,Unsure ,nothing ,n/a,4,4,4,4,4,1,1,1,1,1,4,4,4,4,4,5395936,07-08-2020,01:22,07-08-2020,01:25,13.27272727,mobile,Once a week,35 - 44 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
387,1,3,3,2,DIFFERENT,WILL IT WORK,NOT SURE,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5337456,07-08-2020,01:22,07-08-2020,01:24,9.666666667,desktop,Never,45 - 54 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
388,1,4,4,5,it will ensure to contain my sweating problem,none so far,norhing,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8589731,07-08-2020,01:34,07-08-2020,01:38,18.25,desktop,Twice a week,45 - 54 years,Two,Philippines,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
389,1,5,4,5,it will give you instant cooling and making you fresh which attract my attention,N/A,"Noop as every thing looks good in it,",5,5,5,5,5,1,1,3,1,2,5,6,4,7,4,7554421,07-08-2020,01:53,07-08-2020,01:58,26.33333333,desktop,3+ times a week,25 - 34 years,One,India,Cream,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against wetness
390,1,4,4,4,On-demand feature instead of annoying one.,n/a,n/a,4,5,4,4,4,3,3,1,3,3,6,6,6,6,6,7741796,07-08-2020,01:59,07-08-2020,02:03,19.83333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
391,1,4,4,4,I like the sound of the cooling sensation which is acticated by my body temperature.,n/a,"The idea is great, I would like to see how it is used/dispensed and what it looks like.",3,4,5,5,5,3,2,3,1,1,3,5,5,7,7,5339476,07-08-2020,02:18,09-08-2020,04:21,15011.83333,desktop,Less often,45 - 54 years,One,Australia,Roll-on,Yes,I only use it on specific occasions,Female,Normal sweater,It prevents / controls against wetness
392,1,5,5,5,When feeling hot and sweaty it would feel nice to have a cooling sensation instead of a hot wet feel. Especially when it’s very humid ,Nothing I disliked ,Nothing comes to mind ,4,5,5,5,5,2,1,1,1,1,6,6,7,7,7,5374433,07-08-2020,02:27,07-08-2020,02:32,22.75,mobile,Twice a week,35 - 44 years,One,US,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
393,1,5,4,4,I like the cooling sensation effect ,N/a,N/a,5,5,3,5,5,3,1,1,1,1,6,7,5,7,7,8664202,07-08-2020,02:33,07-08-2020,02:37,22.91666667,mobile,3+ times a week,35 - 44 years,Two,Philippines,Cream,Yes,I use it multiple times a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
394,1,4,4,4,that it releases cooling ingredients when activated by your body's temperature,n/a,n/a,4,4,5,4,4,2,2,1,1,1,2,3,6,7,6,7618229,07-08-2020,02:38,07-08-2020,02:41,20,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
395,1,3,4,4,I would like to experience it first and then make way for comments.,the product should be free from contamination and virus free. should follow covid 19 conscience.,change should the precautions for the cubes clean. there should be proper user guidance.,4,4,4,4,4,3,4,4,2,2,4,5,4,5,5,7741977,07-08-2020,02:43,07-08-2020,02:50,33.08333333,desktop,Twice a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It’s natural / contains natural ingredients
396,1,5,4,5,Feel cool and fresh during the journey,Nothing,No,5,5,4,4,4,1,1,1,1,1,7,6,7,6,6,7554370,07-08-2020,02:56,07-08-2020,02:59,16.25,desktop,Less often,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
397,1,5,2,5,That extra boost when you feel really underwarm sweat,That it actually would work,"The Ice Cube Encaps, makes no real sense",2,5,3,5,5,2,2,1,1,1,2,5,5,7,7,5376423,07-08-2020,02:58,07-08-2020,03:03,27.75,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
398,1,1,1,1,"Nothing, really... I would just buy a different deodorant product to use that works!",Just sounds weird...,Buy a deodorant that does NOT let you down! :),1,4,4,5,5,4,2,2,1,1,1,1,1,7,7,5402622,07-08-2020,03:02,07-08-2020,03:08,32.25,desktop,3+ times a week,55 - 64 years,I don’t have any children,US,Soft solid (clinical),Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
399,1,5,4,5,"It uses body temperature to release the coolant,which seems quiet practical as the product senses the actual need when required.like it.",None,n/a,4,5,4,4,4,2,2,1,3,1,4,5,4,6,5,7590237,07-08-2020,03:06,07-08-2020,03:13,33.75,mobile,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
400,1,5,5,5,I would get rid of bad smell and loss of efficiency due to problem and shall be able to work with all vigor and efficiency ,n/a,n/a,3,4,4,5,5,3,2,1,1,1,6,6,5,7,7,7741902,07-08-2020,03:15,07-08-2020,03:19,18.16666667,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Cream,Yes,I use it at least once a day,Male,Normal sweater,It’s natural / contains natural ingredients
401,1,5,4,5,Odour protection with cool and refresh in hot humid environment,Nothing to dislike,Nothing,5,5,4,4,4,1,1,1,1,2,7,7,6,7,7,7763594,07-08-2020,03:16,07-08-2020,03:20,18.16666667,desktop,Once a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
402,1,4,4,4,that it gives you a cooling sensation,so far I have no dislikes,no I would not change anything,4,4,4,5,5,2,1,1,1,1,6,6,6,6,6,5339927,07-08-2020,03:22,07-08-2020,03:27,25.16666667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Male,Anxious sweater,Has a fragrance I like
403,1,4,4,3,It sounds like it would help to keep you a bit cooler in humid weather.,n/a,n/a,3,4,4,4,4,3,1,1,1,2,3,5,4,7,7,7668576,07-08-2020,03:25,07-08-2020,03:35,52.83333333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
404,,,,,,,,,,,,,,,,,,,,,,,5402593,07-08-2020,03:27,,,,desktop,3+ times a week,25 - 34 years,One,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
405,1,2,2,2,It's cool that it makes you feel a little colder,I just don't understand how it works and how it would be healthy for my body,I would explain how it works and if it's natural,2,3,3,5,5,3,3,3,1,1,1,3,3,7,7,5376408,07-08-2020,03:30,07-08-2020,03:42,57.58333333,desktop,3+ times a week,18 - 24 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
406,1,5,4,4,If it does what it say's then that's fantastic.,If it didn't work.,n/a,4,4,4,4,4,1,1,1,1,1,7,6,6,6,7,5451127,07-08-2020,03:47,07-08-2020,04:02,74.41666667,desktop,Never,45 - 54 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Non-sweater,Has a fragrance I like
407,1,5,3,5,sweat control and cooling sensation to cool the body,n/a,n/a,3,5,5,5,5,3,1,1,1,1,4,7,7,7,7,8604969,07-08-2020,03:56,07-08-2020,04:07,55.33333333,desktop,Less often,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
408,1,5,4,5,The idea that it'll give a chilling slash cooling effect is so appealing in hot summer days while also serving the surpose of Deodorant .,Nothing as such to dislike.,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7835520,07-08-2020,04:05,07-08-2020,04:08,19,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
409,1,4,4,4,I think it is a very good idea specially during summer wherein sweat is really inevitable and can cause a very uncomfortable feeling having this additional benefits from a deodorant is very good since our goal is to keep fresh and smelling good all day long.,N/A,i think you just have to elaborate it more in order for the consumer to understand what a Cube Encaps is.,3,5,4,5,5,3,1,1,1,1,4,7,6,7,7,8661438,07-08-2020,04:09,07-08-2020,04:20,54.33333333,desktop,Twice a week,45 - 54 years,Four or more,Philippines,Pump spray,Yes,I use it multiple times a day,Female,Anxious sweater,It’s natural / contains natural ingredients
410,1,5,5,5,"it's on demand cooling sensation, so that we can not get sweat and keeps us fresh in humid conditions.",n/a,n/a,4,4,4,4,4,1,1,1,1,1,4,7,7,7,7,7639572,07-08-2020,04:09,07-08-2020,04:28,92.16666667,desktop,Never,35 - 44 years,One,India,I don't use any,No,I only use it on specific occasions,Female,Normal sweater,I don't use any
411,1,4,4,4,yes i like it,N/A,N/A,4,2,2,4,4,3,3,3,3,3,6,6,6,5,5,8607286,07-08-2020,04:15,07-08-2020,04:22,37,desktop,Twice a week,45 - 54 years,One,India,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against wetness
412,1,5,4,4,leaves you feeling fresh,ice cube encaps is not appropriate or believable,delete ice cube,3,5,4,5,5,4,1,1,1,1,3,7,7,7,7,5383381,07-08-2020,04:16,07-08-2020,04:23,33,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
413,1,5,5,5,relief from sweat during summer,n/a,n/a,5,5,5,5,5,3,2,2,1,2,2,4,7,7,7,7742285,07-08-2020,04:17,07-08-2020,04:27,51.58333333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Pump spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,Has a fragrance I like
414,,,,,,,,,,,,,,,,,,,,,,,8661389,07-08-2020,04:18,,,,desktop,3+ times a week,45 - 54 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
415,1,4,4,4,on-demand cooling,n/a,will add details about ingredients used for this product - are these natural and safe for the skin ,4,4,4,4,4,2,1,1,1,1,6,6,6,7,7,7668577,07-08-2020,04:18,07-08-2020,04:23,28.18181818,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
416,1,5,5,5,It is truth and real use easy so like ,No anything,n/a,4,5,5,4,5,5,5,4,4,5,5,6,7,6,6,8590042,07-08-2020,04:22,07-08-2020,04:24,12,desktop,3+ times a week,18 - 24 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
417,1,4,4,4,Would work well and be simple to use,Not sure how well this will really work,n/a,4,4,5,5,4,2,2,1,1,1,2,5,7,6,6,5335631,07-08-2020,04:27,07-08-2020,04:36,45.41666667,desktop,Few times a month,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
418,,,,,,,,,,,,,,,,,,,,,,,5402053,07-08-2020,04:28,,,,desktop,Less often,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
419,1,5,4,4,Its dose what says it would be ideal on hot humid days,N/a,Would not change a things as it is not made by strong chemicals ,4,4,4,5,5,2,3,1,1,1,5,5,6,7,7,5365740,07-08-2020,04:31,07-08-2020,04:40,46.33333333,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
420,1,5,5,5,I think the product will hike the potential of the consumer.,Nothing else.,N/a,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,7763949,07-08-2020,04:32,07-08-2020,04:35,12.08333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
421,1,4,4,5,Its great quality and attactive design ,Nothing ,I think more quality ,4,4,4,4,5,3,2,2,4,3,5,6,6,6,6,8606505,07-08-2020,04:38,07-08-2020,04:47,44.16666667,mobile,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
422,1,4,4,5,it will cool me down during commutes,n/a,n/a,3,5,5,3,3,1,1,1,3,3,5,6,6,4,4,5383144,07-08-2020,04:39,07-08-2020,04:42,13.09090909,desktop,Less often,45 - 54 years,One,Australia,Aerosol Spray,Yes,I only use it on specific occasions,Male,Normal sweater,It prevents / controls against odour
423,1,5,4,4,It sounds like it would help to combat sweating during situations when people tend to sweat more,It sounds too good to be true! Would it really work as stated?,n/a,3,4,5,5,5,2,1,1,1,1,1,6,6,7,7,8615180,07-08-2020,04:40,07-08-2020,05:15,173.3333333,desktop,Twice a week,45 - 54 years,I don’t have any children,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,It prevents / controls against odour
424,1,4,4,4,deodorant extra,no,no,4,5,5,5,4,5,2,1,2,2,7,7,7,6,5,5346596,07-08-2020,04:45,07-08-2020,04:57,63.25,desktop,Twice a week,25 - 34 years,One,US,Cream,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against wetness
425,1,3,4,3,THE FRESHNESS FEEL,NOTHING,N/A,5,5,5,5,4,1,1,1,1,1,6,7,7,7,7,5402397,07-08-2020,05:02,07-08-2020,05:11,45.08333333,desktop,Twice a week,25 - 34 years,Two,US,Gel,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
426,1,4,4,4,Keeps me cool and especially when I am warm,Nothing,Nothing,5,3,4,4,4,1,3,1,1,1,7,3,6,7,6,5337503,07-08-2020,05:11,07-08-2020,05:16,23.08333333,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
427,1,5,4,4,to cut off sweat ,nothing actually ,nope,5,4,4,4,5,5,4,2,3,3,6,7,5,6,4,7979029,07-08-2020,05:14,07-08-2020,05:24,49,desktop,3+ times a week,25 - 34 years,One,India,Lotion,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
428,1,5,5,5,I want to try new products everyday,Nothing dislike,N/a,4,4,4,5,5,1,2,2,3,3,7,5,7,6,6,7590370,07-08-2020,05:18,07-08-2020,05:21,16.75,mobile,Twice a week,35 - 44 years,Two,India,Lotion,Yes,I use it at least once a day,Female,Excessive sweater,It cares for my skin
429,1,4,4,3,KEEPS YOU FRESH EVEN WHEN ITS HUMID,NOTHING,N/A,3,4,4,5,5,2,1,1,1,1,3,6,5,7,7,5374627,07-08-2020,05:22,07-08-2020,20:12,4449.166667,desktop,Twice a week,35 - 44 years,One,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
430,1,4,4,3,it release a natural cooling sensation,rigidity of the product concept,after effect of cooling sensation,4,3,4,3,3,4,3,4,2,3,5,5,4,4,4,7719364,07-08-2020,05:26,07-08-2020,05:32,32.58333333,desktop,Twice a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It cares for my skin
431,1,4,4,4,It is nice work i love this work,No comment ,No,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,7763633,07-08-2020,05:34,07-08-2020,05:42,40.58333333,mobile,Twice a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It cares for my skin
432,1,2,2,1,The name is nice. It evokes what one wants to feel on a hot and sticky day. The idea expressed in the second bubble - activated by ...no matter the climate is pleasing. ,The name Balu is rare and it is a South Indian name whereas the picture is of a man who is obviously from a Nordic nation. The copy for the first pic is tedious and childishly finger pointing (my deodorant lets me down). Both pics are of white people. The copy in the second bubble is also clumsy but has better substance,Change the name Balu to something more neutral. Choose a face type that is not so white. Trim the copy so it is to the point and reads nice to the ear if read aloud. ,3,4,4,3,3,3,1,1,3,3,4,7,6,4,5,7741858,07-08-2020,05:35,07-08-2020,08:17,809.9166667,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,I don't use any,No,I rarely / never use deodorant,Female,Heavy sweater,I don't use any
433,1,4,4,3,The advertisement has a scientific approach of getting my attention.,The product does not promise sweat control.,"I will add natural fragrance to the product, when activated by the body temperature.",3,4,4,5,5,3,2,1,1,1,4,5,6,7,7,7763743,07-08-2020,05:35,07-08-2020,05:41,29.75,desktop,3+ times a week,35 - 44 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
434,1,4,2,3,it would be good if it provides extra protection when I need it.,I find it hard to believe it would work,Not if it did the job,3,4,4,5,5,2,2,2,1,1,3,5,5,7,7,5411185,07-08-2020,05:39,07-08-2020,05:43,21.41666667,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
435,1,5,5,5,extra cooling ingredients,tell me the ingredient,na,3,3,4,5,5,3,3,2,1,1,1,1,4,7,7,5377246,07-08-2020,05:39,07-08-2020,05:47,41.58333333,desktop,Never,35 - 44 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
436,1,4,4,5,It is great to have a deo that takes care of climatic conditions.,n/a,n/a,4,4,2,4,5,2,1,1,1,1,5,5,4,6,6,7742084,07-08-2020,05:40,07-08-2020,05:48,40.41666667,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,Has a fragrance I like
437,1,3,4,2,the cooling ingredient sounds good,nothing,no,4,4,4,4,4,2,1,1,1,1,4,6,5,7,6,5383703,07-08-2020,05:46,07-08-2020,05:49,12.33333333,mobile,3+ times a week,35 - 44 years,One,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
438,1,4,4,4,Being able to keep you fresh no matter what the temperature,n/a,n/a,2,5,5,5,5,2,1,1,1,1,4,5,6,5,6,5364558,07-08-2020,05:52,07-08-2020,05:58,33.18181818,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
439,1,4,4,4,I like the cooling sensation activated by body temperature ,n/a,N/a,3,4,4,5,5,3,1,1,1,1,4,6,6,7,7,7618647,07-08-2020,05:53,07-08-2020,06:00,36.27272727,desktop,Less often,65 years +,I don’t have any children,Australia,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against wetness
440,1,5,3,5,That a deodorant works with your body. ,n/a,n/a,5,5,4,4,4,2,2,4,2,5,4,6,5,6,6,5383445,07-08-2020,06:32,07-08-2020,06:53,111.8181818,mobile,Twice a week,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Non-sweater,Has a fragrance I like
441,1,5,3,4,I LIKE THAT WHEN YOU GET HOT IT HAS A COOLING AGENT,WHAT SORT OF CHEMICALS ARE IN THIS???,NA,4,4,5,5,5,1,1,2,1,1,6,4,5,7,7,6897994,07-08-2020,06:36,07-08-2020,06:39,12.91666667,desktop,Twice a week,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
442,1,4,3,4,"like that the product will provide a cooling sensation, releasing cooling ingredients that will keep me fresh no matter the climate","would say the word Encaps, feel that most people will not know what that is or means, feel that name should be change to something different that will be more clear and relatable to the product","would change the word Encaps, to something people can understand",1,4,4,5,5,5,1,1,1,1,1,6,6,7,7,7565169,07-08-2020,06:57,07-08-2020,07:55,318.3636364,desktop,Less often,45 - 54 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
443,1,4,3,3,Keeps sweat under control,Nothing,n/a,5,4,5,5,5,1,1,1,1,1,6,5,5,7,7,6914871,07-08-2020,07:12,07-08-2020,07:16,21.41666667,desktop,3+ times a week,45 - 54 years,One,South Africa,Roll-on,No,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
444,1,5,3,3,works as u need it,nothing,nothing,5,5,5,5,5,3,3,1,1,1,6,7,7,7,7,5366027,07-08-2020,07:20,07-08-2020,07:24,20.91666667,desktop,3+ times a week,35 - 44 years,Two,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,Has a fragrance I like
445,1,5,4,4,I like the idea of 'on-demand cooling sensation'. it seems like a unique and innovative concept,I am a little less confident if this could be actually true or if it's any marketing gimmick,I would add relevant data to prove the above-given statement by the product designer,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7681904,07-08-2020,07:33,07-08-2020,07:41,40.16666667,desktop,3+ times a week,25 - 34 years,Two,India,Pump spray,Yes,I use it at least once a day,Female,Heavy sweater,It’s natural / contains natural ingredients
446,1,5,4,5,That it would let me feel cool even when my body temperature is hot because of the hot and humid weather. That it would also retain the fragrance that is usually lost when using normal deodorants. ,Maybe the chemicals are bad for my skin,I would like them to mention that the product is skin-friendly or that it wouldn't cause skin reactions. It must be natural and not cancer-causing.,5,5,5,4,5,2,1,1,2,1,7,7,7,6,7,7617815,07-08-2020,07:55,07-08-2020,08:03,37.66666667,mobile,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I only use it on specific occasions,Female,Heavy sweater,It prevents / controls against odour
447,1,4,4,4,Good idea,Nothing,n/a,4,4,4,4,4,1,1,1,1,1,5,4,6,6,7,7554005,07-08-2020,08:02,07-08-2020,08:08,31.54545455,mobile,3+ times a week,25 - 34 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It cares for my skin
448,1,3,3,4,it is something different,none,no,4,4,3,4,4,3,3,4,2,4,4,6,4,6,6,7763941,07-08-2020,08:04,07-08-2020,08:06,12,desktop,3+ times a week,25 - 34 years,I don’t have children under the age of 18,India,Pump spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,It cares for my skin
449,1,3,2,3,releases cooling ingredients no matter the climate,"not being able to see what it looks like, is it an additional product to use? does it adjust to the temperature?",temperature rather than climate,5,5,5,5,5,1,1,1,1,1,5,7,7,7,7,7293602,07-08-2020,08:06,07-08-2020,08:11,27.54545455,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
450,1,4,4,4,cooling sensation in hot humid climate,n/a,n/a,4,4,4,4,4,1,1,3,2,1,6,6,5,5,6,7741892,07-08-2020,08:08,07-08-2020,08:16,38.58333333,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
451,1,5,5,5,"I like the fact that as my body temperature rise it would activate the product and it would keep me fresh. There is nothing so irritating for me as feeling hot and uncomfortable, especially while travelling. Feeling cool just makes you feel more energetic and mentally it just makes you feel more positive. When you hot and sweaty you feel crushed and saps your energy. ",How can there be anything about this product that a person can dislike? ,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7668652,07-08-2020,08:08,07-08-2020,08:23,77.63636364,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,Has a fragrance I like
452,1,5,5,5,good one,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8607761,07-08-2020,08:15,07-08-2020,08:17,8.909090909,desktop,3+ times a week,45 - 54 years,One,India,Lotion,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
453,1,4,4,5,Its controll my body temprature and i feel fresh,Noth8ng,I prefer not to say,4,4,5,4,4,4,4,5,4,5,6,6,7,6,6,9067444,07-08-2020,08:28,07-08-2020,08:33,26.16666667,desktop,,,,,,,,,,
454,1,3,4,3,It is different,I don't think I need it,No,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5390544,07-08-2020,08:33,07-08-2020,08:35,11.41666667,desktop,Once a week,25 - 34 years,I don’t have any children,Australia,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
455,1,5,4,4,i like how it's smart enough to be activated by body temperature and provide cooling when needed,n/a,n/a,4,4,5,5,5,2,3,3,1,1,5,5,6,7,7,5451666,07-08-2020,08:33,07-08-2020,08:39,25.5,desktop,Never,35 - 44 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
456,1,5,2,4,It seems quite original and definitely would solve the issue I as a woman would not speak about openly.,"The ad above is not very forthcoming about the application details or product appearance or smell, so I cant quite comment on that until tested, but I do have concerns over the chemicals used, it does not seem all natural.",I would need more information on the product before offering any ideas on changes. ,1,4,4,5,5,4,2,1,1,1,3,5,5,7,7,5361130,07-08-2020,08:47,07-08-2020,08:55,41.5,desktop,Less often,25 - 34 years,Two,South Africa,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
457,1,4,4,4,It activates a cooling sensation when there's a change in temperature,n/a,n/a,2,4,5,5,4,4,1,1,1,1,1,7,6,6,5,5428930,07-08-2020,08:48,07-08-2020,10:12,418.0833333,desktop,3+ times a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
458,1,1,3,1,n/a,nothing,no,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5375695,07-08-2020,08:52,07-08-2020,08:53,6.181818182,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against odour
459,1,5,5,5,It provides cooling sensation as per our body temperature.,n/a,n/a,4,5,5,5,5,2,1,1,1,1,7,7,7,7,7,7829005,07-08-2020,09:00,07-08-2020,09:07,39.58333333,mobile,,25 - 34 years,,India,,,,Male,,
460,1,5,4,4,"I think the most interesting thing about this product which I liked most is, this product is going to release cooling ingredients when activated by your body temperature to keep you fresh no mater what the climate is during your journey!",I think there is not a single thing that I disliked about this product.,I would only like to change the smell of this product.,3,5,4,5,5,1,1,1,1,1,5,6,7,7,7,7742114,07-08-2020,09:00,07-08-2020,09:12,66.54545455,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
461,1,5,4,5,"It is a unique product and since we live in a hot and humid country(India), such a product would be very much useful to us.",None,"No, it seems just perfect",2,5,5,5,5,5,1,1,1,1,5,7,7,7,7,7742073,07-08-2020,09:11,07-08-2020,09:15,19.16666667,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
462,1,5,5,5,This product can help us feel comfortable in a hot and humid climate. ,n/a,product should be available in a variety of fragrances. ,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7810470,07-08-2020,09:13,07-08-2020,09:19,29.58333333,mobile,,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,
463,1,1,2,1,nothing,it really something I need or would use,n/a,1,4,4,4,3,4,1,1,1,1,1,7,6,7,7,5390711,07-08-2020,09:13,07-08-2020,09:18,23.58333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Non-sweater,Has a fragrance I like
464,1,4,4,4,cooling senstaion,n/A,none,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5332746,07-08-2020,09:21,07-08-2020,09:24,19,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
465,1,4,4,4,If it can be done automatically without any effort it should be good.,"It does not give full details as "" Before moving in from a hot temperature to a colder temperature there has to be time lag otherwise a person may catch cold"" and also what will body temperature after the use of the product needs to be mentioned. In short the product can be used but with certain pre conditions which can be mentioned as and when it is introduced.",It require a lot more clarity on the use.,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,7741701,07-08-2020,09:22,07-08-2020,09:59,184.9166667,desktop,3+ times a week,45 - 54 years,I don’t have any children,India,I don't use any,No,I rarely / never use deodorant,Male,Normal sweater,I don't use any
466,1,3,4,4,Keep fresher in hot weather,Nothing,N/a,4,3,3,4,3,3,3,3,3,3,4,4,4,4,4,7978692,07-08-2020,09:47,07-08-2020,09:49,11.08333333,mobile,,55 - 64 years,,UK,,,,Female,,
467,1,4,5,5,I like this product. Ice cube has a good for high temperature and humid areas perfectly work and safe for your skins. ,No any dislike this product ,N/A,5,5,4,4,5,2,3,3,3,3,7,7,6,7,6,7763396,07-08-2020,09:59,07-08-2020,10:15,77.91666667,mobile,3+ times a week,35 - 44 years,Two,India,Stick,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
468,1,5,5,5,I liked the cooling effects provided by the product. ,n/a,I would like this product to be skin friendly. ,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7974248,07-08-2020,09:59,07-08-2020,10:05,30.75,mobile,,25 - 34 years,,India,,,,Male,,
469,1,4,5,5,Refreshing to me,N/A,n/a,5,5,5,5,5,1,1,1,2,1,7,7,7,7,7,8066692,07-08-2020,10:09,07-08-2020,10:30,116.5454545,desktop,,25 - 34 years,,South Africa,,,,Female,,
470,1,4,5,5,cooling sensation,ok,ok,4,4,4,5,5,4,3,4,3,3,7,7,6,6,7,7812611,07-08-2020,10:11,07-08-2020,10:15,20.75,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It’s natural / contains natural ingredients
471,1,4,5,4,The fact that it has a cooling effect which i sometimes need when attacked by warm body temperatures,I would say nothing at all because it brings a solutions to my problems,I would say that they must make it to be natural in ingredients,4,5,5,5,4,5,1,1,1,2,6,7,5,6,7,5368341,07-08-2020,10:30,07-08-2020,10:40,51.75,desktop,Twice a week,25 - 34 years,Two,South Africa,Pump spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
472,1,4,4,4,it gives you a cooling sensation,n/a,n/a,4,3,5,4,5,3,1,1,3,1,5,6,6,4,7,8662277,07-08-2020,10:30,07-08-2020,10:37,32.33333333,desktop,Once a week,55 - 64 years,I don’t have any children,Philippines,I don't use any,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
473,1,5,5,5,This product helps to stay cool in hot climate. ,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7856501,07-08-2020,10:42,07-08-2020,10:47,26.5,mobile,,25 - 34 years,,India,,,,Male,,
474,1,4,4,4,cooling sensation for body temperatures in all climates,Nothing,I would not change anything,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,5371686,07-08-2020,10:42,07-08-2020,10:54,67.90909091,desktop,Twice a week,35 - 44 years,Three,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
475,1,5,4,5,sounds great when commuting,nothing,n/a,4,5,4,5,4,3,1,1,1,1,6,6,6,6,6,6879407,07-08-2020,10:43,07-08-2020,10:51,37.66666667,desktop,3+ times a week,35 - 44 years,Two,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
476,1,5,5,5,Sweat control for mumbais hot climate,N/a,N/a,4,5,4,5,5,1,1,1,1,1,6,6,5,6,6,7763343,07-08-2020,10:44,07-08-2020,10:47,18.25,mobile,Less often,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
477,1,4,5,4,Very nice product,Nothing it's all right,Nothing it's ok,5,4,4,4,5,5,5,4,5,5,6,7,7,6,6,7554041,07-08-2020,10:47,07-08-2020,10:51,19.54545455,mobile,3+ times a week,35 - 44 years,Three,India,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,It prevents / controls against wetness
478,1,4,3,3,Unique idea,N/a,N/a,4,4,4,5,5,2,2,2,1,1,4,5,6,7,7,5347816,07-08-2020,10:48,07-08-2020,11:11,124.2727273,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
479,1,5,5,5,I like the cooling feature of the product which can help me to stay calm in hot climate.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7973635,07-08-2020,10:51,07-08-2020,10:59,40.16666667,mobile,,25 - 34 years,,India,,,,Male,,
480,1,4,4,4,"would be worth a try to see if it works, as I sweat loads especially when don't want to.",may just be another gimmick like 72 hour control - what are they doing freezing your glands,"unsure not being scientifically minded, would be intrigued to know how it worked especially if natural",4,4,4,5,4,3,2,2,1,1,4,3,5,7,6,7590364,07-08-2020,11:05,07-08-2020,11:10,25.33333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Roll-on,Yes,"I use it most days, but not every day",Male,Excessive sweater,It prevents / controls against wetness
481,1,3,2,3,on demand cooling sensation,nothing is explained,give more details,4,4,3,5,5,2,1,2,1,1,7,7,5,7,7,7617907,07-08-2020,11:06,07-08-2020,11:13,36.33333333,desktop,3+ times a week,18 - 24 years,I don’t have any children,India,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,Has a fragrance I like
482,1,3,2,2,"Would provide a ""cooling sensation""; added protection.","I don't know what ""ice cube encaps"" actually are.",A better look at the product and how it's applied/works.,3,5,4,5,5,3,1,1,1,1,2,6,5,7,7,7618531,07-08-2020,11:07,07-08-2020,11:11,23,desktop,Twice a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,Has a fragrance I like
483,1,4,4,3,on demand cooling sense,description is well but when i use then i got the final result be practical,no,4,4,4,3,4,3,3,3,3,3,6,5,5,6,6,7561530,07-08-2020,11:13,07-08-2020,11:19,30.66666667,desktop,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
484,1,5,5,5,everything clear,nothing,girl pic,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,5454957,07-08-2020,11:18,07-08-2020,11:21,15.45454545,desktop,3+ times a week,25 - 34 years,One,US,Cream,Yes,I use it multiple times a day,Female,Excessive sweater,Has a fragrance I like
485,1,4,4,3,It would be a good idea for people who do sport,There are other effective products on market,Make it more for sport people,4,4,4,5,5,2,1,2,1,1,4,7,6,7,7,5378287,07-08-2020,11:18,07-08-2020,11:23,28.27272727,desktop,Once a week,35 - 44 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
486,1,5,5,5,This product provides cooling and gives relief during hot climate.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7974101,07-08-2020,11:19,07-08-2020,11:30,52.66666667,mobile,,25 - 34 years,,India,,,,Male,,
487,1,4,4,5,Able to absorb sweat,None,Mo?e Crystals ,5,5,5,5,5,1,1,1,1,1,6,7,7,6,7,7605520,07-08-2020,11:21,07-08-2020,11:24,16.5,mobile,3+ times a week,45 - 54 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
488,1,5,5,5,to keep you fresh all the time.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8589715,07-08-2020,11:26,07-08-2020,11:39,64.91666667,desktop,3+ times a week,45 - 54 years,Two,Philippines,Roll-on,Yes,I use it multiple times a day,Male,Excessive sweater,It cares for my skin
489,1,3,4,1,The idea of being able to cool down on the go!,It makes me think of wetness. I feel it will also be expensive and not really eco friendly,N/a,4,5,5,4,4,3,1,1,3,3,4,7,5,4,4,8642004,07-08-2020,11:34,07-08-2020,11:51,85.08333333,mobile,Less often,25 - 34 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
490,1,5,3,4,the cooling ingredients,nothing,n/a,4,4,4,4,5,2,1,1,1,1,5,6,6,7,7,5336845,07-08-2020,11:37,07-08-2020,11:40,13.33333333,desktop,Once a week,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
491,1,3,3,4,n/a,n/a,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,6884765,07-08-2020,11:39,07-08-2020,11:41,10.18181818,desktop,Twice a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It cares for my skin
492,1,5,4,5,cooling quality,n/a,n/a,4,4,4,4,5,3,1,1,1,1,5,4,4,4,5,7915763,07-08-2020,11:41,12-08-2020,17:33,37759.16667,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
493,1,4,3,3,the cooling sensation,the price?,n/a,3,4,4,4,4,3,1,1,1,1,4,6,6,6,6,5372639,07-08-2020,11:52,07-08-2020,11:57,27,desktop,Never,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
494,1,4,3,3,that it works with body temperature,nothing,the name encaps,4,4,4,4,4,3,1,2,1,1,3,6,6,6,6,5332506,07-08-2020,11:53,07-08-2020,11:55,12.83333333,desktop,Never,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
495,1,4,4,5,its make cool after come from hot and humid city,nothing all looks good,n/a,4,4,4,5,4,3,3,3,1,3,6,7,6,6,6,7742052,07-08-2020,12:06,07-08-2020,12:12,29,desktop,3+ times a week,25 - 34 years,Two,India,Cream,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
496,1,5,5,5,I like the cooling ingredients the product have. I have never heard about such ingredients before.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7741873,07-08-2020,12:22,07-08-2020,12:41,94.08333333,desktop,3+ times a week,25 - 34 years,Two,India,Pump spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
497,1,4,5,5,Its ability to avoid having too much sweat that can cause body odor,n/a,n/a,4,4,4,5,4,1,1,1,1,1,6,7,7,7,7,8738450,07-08-2020,12:34,07-08-2020,12:40,30.33333333,mobile,Never,35 - 44 years,I don’t have any children,Philippines,Lotion,No,I rarely / never use deodorant,Female,Normal sweater,I don't use any
498,1,5,4,4,"Although I don't commute , I still get hot and a product that can create a cooling sensation would be great when the heat hits. Hopefully it would work for menopausal hot flushes too!",If the cooling effect only kicks in when you feel hot I can't see a downside to the product.,n/a,4,4,5,5,5,2,1,1,1,1,3,7,7,6,6,5333963,07-08-2020,12:35,07-08-2020,13:19,237.5454545,desktop,Never,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
499,1,4,4,5,The product releases cooling ingredents,n/a,n/a,5,5,4,5,5,1,1,1,1,1,6,6,6,7,7,7719405,07-08-2020,12:54,07-08-2020,13:03,44.5,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I only use it on specific occasions,Male,Heavy sweater,It prevents / controls against odour
500,1,4,3,4,I like that it has a cooling sensation for when it's extra hot,nothing I love it,n/a,3,3,4,5,3,3,2,1,3,2,4,7,6,6,7,5368125,07-08-2020,13:28,13-08-2020,11:17,42546.58333,desktop,Few times a month,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
501,1,5,5,5,I like the efficiency of the product and cooling ingredients in hot weather conditions,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7811514,07-08-2020,13:30,07-08-2020,13:39,46.08333333,mobile,,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,
502,1,5,5,5,i like the idea of cooling ingredients knowing released depending on my body temperature and the sensation that would give and cooling off.,Nothing really except in the UK we never tend to get that hot to need it.,N/a,4,5,5,5,5,2,1,1,1,1,5,7,7,7,7,5332652,07-08-2020,13:30,07-08-2020,13:35,23,desktop,Twice a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
503,1,4,4,4,The claim that 'the product releases cooling ingredients when activated by your body temperature' is what I like about the product.,N/A,'Climate' may be changed,4,4,5,4,4,2,1,1,1,1,5,6,7,7,7,7742088,07-08-2020,13:43,07-08-2020,14:00,87.25,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,India,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
504,1,4,3,3,that it may keep a person from sweating in a very humid environment,nothing so far,n/a,4,5,5,5,5,2,1,1,1,1,4,7,7,7,7,5341391,07-08-2020,13:45,07-08-2020,13:50,28.90909091,desktop,Never,45 - 54 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
505,1,4,3,3,nothing special,n/a,n/a,3,4,4,4,4,3,3,3,2,3,5,4,4,5,4,7763990,07-08-2020,13:47,07-08-2020,13:50,15,desktop,3+ times a week,25 - 34 years,One,India,Lotion,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
506,1,5,5,5,"releases cooling ingredients according to the body temperature is very new and exciting, i would love to have one",n/a,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,6,6,7719401,07-08-2020,13:53,07-08-2020,13:58,23.25,desktop,3+ times a week,35 - 44 years,One,India,Stick,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
507,1,4,4,4,completely,nothing,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,7971825,07-08-2020,13:55,07-08-2020,13:59,25.63636364,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
508,1,4,3,3,would be able to keep me cooler,seems a little weird how ouwld that work ,nothing,2,3,4,4,5,2,2,3,1,1,2,4,3,6,6,5437789,07-08-2020,13:56,07-08-2020,13:59,13.5,desktop,Twice a week,25 - 34 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
509,1,5,4,5,having something to cool your body whenits is hot is cool,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,6,7,7,5367881,07-08-2020,14:05,07-08-2020,14:10,29.81818182,desktop,Never,45 - 54 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
510,1,4,5,4,its cooler and can be done on the go it gets hot on the train so very handy,nothing,no,4,4,4,5,5,1,1,1,1,1,5,7,6,6,7,5380807,07-08-2020,14:12,07-08-2020,14:15,18.83333333,desktop,Twice a week,45 - 54 years,Three,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
511,1,5,5,5,I like the cooling ingredients of this product.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7978001,07-08-2020,14:22,07-08-2020,14:34,61,mobile,,25 - 34 years,,India,,,,Female,,
512,1,2,1,1,nothing it sounds weird and strange to me and not sure how it can work,it sounds weird and strange to me,n/a,2,3,4,3,5,2,2,3,1,1,4,6,5,7,5,5352935,07-08-2020,14:28,07-08-2020,14:36,36.66666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
513,1,3,3,4,Encaps Love the sound of the cooling sensation especially in summer.,none,n/a,5,4,3,4,4,2,3,3,2,2,6,5,4,4,7,7618056,07-08-2020,14:37,07-08-2020,14:41,17.91666667,desktop,Less often,25 - 34 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,Has a fragrance I like
514,1,5,5,5,it is amezing,n/a,n/a,4,4,5,5,5,1,1,1,1,1,7,6,6,7,7,7741995,07-08-2020,14:42,07-08-2020,14:44,14.75,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
515,1,5,4,5,The cooling ingredient that activated by the body temperature its very innovative.,None,N/a,3,5,4,5,5,2,1,1,1,1,4,7,6,7,6,8589772,07-08-2020,15:10,07-08-2020,15:20,50.75,mobile,Few times a month,45 - 54 years,I don’t have any children,Philippines,I don't use any,No,I rarely / never use deodorant,Male,Anxious sweater,I don't use any
516,1,3,3,4,New on the market,n/a,n/a,1,4,4,5,4,5,3,3,1,1,1,6,6,6,6,5378582,07-08-2020,15:11,07-08-2020,15:47,182.8333333,desktop,Few times a month,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It’s natural / contains natural ingredients
517,1,3,3,3,The cooling sensation it would offer ,N/a,N/a,2,4,5,5,5,2,1,1,1,3,4,6,6,6,6,7605626,07-08-2020,15:11,07-08-2020,15:21,48.33333333,desktop,Less often,45 - 54 years,Two,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
518,1,4,2,4,"It keeps you cool. I live in the desert, I need something like this product.",I’m not sure it will work as promised. ,Just make sure it works. ,3,4,5,5,4,2,1,1,1,1,2,6,7,7,7,5384186,07-08-2020,15:20,07-08-2020,15:26,29.83333333,mobile,Few times a month,35 - 44 years,Two,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
519,1,5,5,5,I like that it activates based on your body temperature ,N/a,N/a,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5549113,07-08-2020,15:38,07-08-2020,15:44,31,mobile,Few times a month,35 - 44 years,Two,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Heavy sweater,
520,1,5,4,5,That these cubes can be used on the go to feel fresh and deodorizing.,There isn't anything that I don't like about the product. ,N/a,4,4,4,4,4,1,1,1,1,1,5,5,6,6,6,5367733,07-08-2020,16:02,07-08-2020,16:11,42.75,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
521,1,3,3,2,it removes the irritation of the sweat by providing coolness,it does not stop the sweating,the product should provide instant cooling and prevent further sweating too,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7763915,07-08-2020,16:04,07-08-2020,16:10,28.58333333,desktop,Twice a week,45 - 54 years,One,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against odour
522,1,4,4,5,the cooling effect in humid condition and feel fresh,na,also have a long last frangance,3,5,4,5,5,3,4,2,3,3,5,7,7,7,7,7741740,07-08-2020,16:13,07-08-2020,16:34,106.75,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
523,1,5,2,4,That it is activated by my body temperature to keep me cool and smelling fresh,I'm sceptical about it working.,N/A,1,5,5,5,5,5,1,1,1,1,2,6,7,6,7,5349404,07-08-2020,16:14,07-08-2020,16:21,34.83333333,mobile,Few times a month,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
524,1,5,4,5,I feel this product will give a best result preventing sweat and keeps body fresh and cool.Feels like this product will work effectively in humid climates.,If this product is costly or unable to afford.,n/a,3,5,2,5,5,3,1,1,1,1,4,7,7,7,7,7832405,07-08-2020,16:33,07-08-2020,16:49,83.83333333,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,It prevents / controls against odour
525,1,4,4,4,keeps you fresh,none,n/a,4,4,4,4,5,1,1,1,1,1,7,7,7,7,7,6906227,07-08-2020,16:47,07-08-2020,16:50,17.54545455,desktop,3+ times a week,25 - 34 years,I don’t have any children,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against wetness
526,1,3,4,3,it can help prevent sweating and odor on hot days or extra activity days,nothing,n/a,3,2,2,2,2,3,3,3,3,3,4,5,5,6,5,5368756,07-08-2020,16:52,07-08-2020,16:58,33.90909091,desktop,Less often,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
527,1,3,3,3,It's unique ,I don't really understand all that well ,n/a ,3,3,3,3,3,3,2,3,1,1,4,6,6,6,6,5427472,07-08-2020,17:25,07-08-2020,17:28,15.16666667,desktop,3+ times a week,25 - 34 years,One,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Anxious sweater,It doesn’t use a lot of packaging / packaging is recyclable
528,1,5,2,5,"Since I work outside (an am essential), I'm always hot and sweating in my KN95 mask - I would love at least one part of me to cool down a bit under the blazing sun and in the crazy humidity - what a fabulous product that would be if it delivers on its promise.",n/a,"I can't think of anything I'd change, I'd just really hope it works as promised",4,4,4,5,5,2,2,2,1,1,5,6,6,7,7,6967751,07-08-2020,17:39,07-08-2020,17:43,23.08333333,desktop,Twice a week,55 - 64 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
529,1,3,5,1,i don not like this product,i prefer to use a simple deo that is natural,n/a,4,1,1,3,5,3,4,3,4,1,6,3,6,3,7,5346452,07-08-2020,17:55,07-08-2020,18:01,31.5,desktop,Twice a week,55 - 64 years,I don’t have any children,US,Roll-on,Yes,"I use it most days, but not every day",Female,Light sweater,It’s natural / contains natural ingredients
530,1,5,5,5,I like that it gives my deodorant an extra on demand cooling sensation. It keeps me fresh no matter the climate during my journey. ,n/a,n/a,5,5,5,5,5,2,1,1,1,1,7,7,7,7,7,7619246,07-08-2020,17:55,07-08-2020,18:39,219.4166667,desktop,Once a week,35 - 44 years,Three,South Africa,Stick,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
531,1,5,5,5,releases a cooling ingredients to keep me fresh,nothing,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7561380,07-08-2020,18:09,07-08-2020,18:15,30.16666667,desktop,3+ times a week,25 - 34 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
532,1,5,4,5,there are many likable thingss about this product it mainely solves the problem of our area people which is humid and hot and in a day it i is not easy to travel outside. the sweat and its odour on our body creates bad impression and our regular deo is not that much efficeint to solve all problems so we really want such a product which helps us to stay cool and odour free.,there is nothing to dislike about the idea but one need to have some light over the ingredeints used and a procedure by which it help us to stay cool even during such a bad weather.,well i will change the answer given by a product designer a bit like i will add the product ingredeints names and through some light on the process by which it helps us stay cool.,4,5,4,4,5,2,2,2,1,1,5,6,6,7,7,7763699,07-08-2020,18:31,07-08-2020,18:46,75.66666667,desktop,3+ times a week,18 - 24 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It’s natural / contains natural ingredients
533,1,4,5,4,It seems a good option,No dislike,No,2,4,5,4,5,4,5,4,4,5,7,5,4,7,4,7763371,07-08-2020,18:31,07-08-2020,18:34,11.5,mobile,3+ times a week,35 - 44 years,One,India,Stick,Yes,I use it multiple times a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
534,1,5,5,5,I like it,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7741879,07-08-2020,18:43,07-08-2020,18:44,8.727272727,desktop,3+ times a week,55 - 64 years,One,India,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
535,1,4,4,5,Instant relief. works automatically according to the body temp.,n/a,no,5,5,5,5,5,1,1,1,1,1,5,6,7,7,7,5333578,07-08-2020,18:49,07-08-2020,18:54,26.58333333,desktop,Few times a month,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
536,1,5,4,4,I do sweat a lot when I am outside. Usually deos hide the smell but I don't feel coolness. So this would be very relaxing. ,I don't know if the product would love upto it's ideas or not given that I have never used anything like this,Make the coolness scented like only when I am sweating would the scent come out,4,4,5,4,4,1,2,1,1,1,4,6,5,5,6,7605458,07-08-2020,19:21,07-08-2020,19:25,22.25,mobile,Twice a week,18 - 24 years,I don’t have any children,India,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
537,1,5,4,5,It promises to keep you cool in hot weather and effectively keeps you smelling fresh.,Nothing ,N/a,4,4,5,4,4,2,1,1,1,1,5,5,7,7,5,5360627,07-08-2020,19:44,07-08-2020,19:50,28.58333333,mobile,Less often,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
538,1,4,4,3,it calms and cool sensation,n/a,n/a,3,4,3,4,4,3,2,2,1,2,4,5,3,5,5,7605471,07-08-2020,20:03,07-08-2020,20:21,92.5,desktop,3+ times a week,25 - 34 years,One,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
539,1,5,4,5,That it will keep me fresh and not sweat when it hot ,None,N/a,5,5,5,5,5,2,1,1,1,1,4,7,7,7,7,7618818,07-08-2020,20:03,07-08-2020,20:19,86.45454545,mobile,3+ times a week,35 - 44 years,Three,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
540,1,5,4,5,"Cooling can be a strong problem for many living in this hot and humid climate. Especially in the Dummer when it gets really unbearable, I'd expect people to want something that gives a cooling sensation. ",N/a,N/a,5,5,4,4,4,2,1,1,1,1,4,7,5,6,6,7831142,07-08-2020,20:30,07-08-2020,20:34,19,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
541,1,5,4,4,Releases cooling ingredients when you are in hot situations. Keeps you cool and fresh,I do not dislike anything,"I would like to know what ingredients and how exactly they work, not enough information for such a big claim",1,4,4,5,5,4,1,1,1,1,1,7,5,7,7,5336128,07-08-2020,20:35,07-08-2020,20:44,46,mobile,3+ times a week,35 - 44 years,Two,UK,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It’s natural / contains natural ingredients
542,1,4,3,4,It releases cooling agents based on my body temperature,It seems as if it is for men only,Add a woman in the ad as well if it is a unisex product,4,4,4,4,5,2,1,1,1,1,5,6,6,6,7,5335281,07-08-2020,20:36,07-08-2020,20:40,19.33333333,mobile,Once a week,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
543,1,5,4,4,I like that it responds to how hot your body is,N/a,N/a,4,4,4,5,5,3,3,3,1,1,5,5,5,7,7,7618704,07-08-2020,20:45,07-08-2020,20:49,19.36363636,mobile,3+ times a week,35 - 44 years,One,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
544,1,4,4,3,"I like the confidence it offers. I would feel more confident knowing I smell fresh, even in hot and humid weather.",N/A,N/A,4,3,4,5,5,2,3,1,1,1,3,4,5,7,7,6986139,07-08-2020,20:47,07-08-2020,20:52,26.58333333,mobile,Never,45 - 54 years,One,US,Gel,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
545,1,4,2,4,i like it's new and different-unsure if it would work,not sure if it would work,nothing,4,4,4,4,4,2,1,3,2,2,3,6,5,6,6,5344655,07-08-2020,20:53,07-08-2020,20:55,10.5,desktop,Once a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
546,1,5,4,5,"It sounds like a perfect fit for me, as the scenario is something that sometimes happens to me",Nothing,Nothing,5,5,3,4,4,1,1,1,1,1,5,6,4,6,5,5364734,07-08-2020,20:54,07-08-2020,20:57,11.58333333,desktop,Never,35 - 44 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
547,1,4,3,2,It would be a new product,Nothing,No,3,5,5,5,5,3,2,2,1,1,3,4,5,6,6,6880664,07-08-2020,21:27,07-08-2020,21:32,21.25,mobile,Once a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
548,1,5,2,4,Claims to be most effective when needed,n/a,n/a,4,3,5,5,5,3,3,1,1,1,4,4,5,7,7,6901064,07-08-2020,21:44,07-08-2020,21:48,18.58333333,desktop,3+ times a week,45 - 54 years,One,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
549,1,4,4,4,cooling u down helps as long as its letting the pores breathe ,not sure would have to try to give opinion,no only after try could give opinion,4,4,4,4,4,2,1,1,1,1,5,6,6,6,5,5337300,07-08-2020,22:54,07-08-2020,23:05,58.54545455,mobile,3+ times a week,55 - 64 years,Two,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
550,1,5,3,5,"Good, clean, fresh and promising ",N/a,N/a,3,3,3,3,3,1,1,1,1,1,6,6,6,6,6,7605561,07-08-2020,23:31,07-08-2020,23:36,24.83333333,mobile,Never,35 - 44 years,Three,South Africa,Stick,Yes,I use it multiple times a day,Female,Light sweater,It cares for my skin
551,1,4,3,3,I would like the cooling sensation if it actually worked.,Sceptical that it would actually work,N/a,5,5,5,5,5,1,1,1,1,1,7,7,6,7,7,7670873,08-08-2020,00:56,08-08-2020,01:00,22,desktop,Less often,35 - 44 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
552,1,4,5,4,Its amazing,N/A,N/A,5,4,4,3,3,3,3,4,3,3,4,5,5,4,4,8606159,08-08-2020,02:30,08-08-2020,02:36,35,desktop,Twice a week,35 - 44 years,One,Philippines,I don't use any,No,I rarely / never use deodorant,Male,Non-sweater,I don't use any
553,1,4,3,3,I need the cooling due to Thermoregulatory Dysfunction ,Nothing in particular ,Nothing in particular ,3,4,4,4,4,2,1,1,1,1,4,5,6,6,6,6920128,08-08-2020,03:28,08-08-2020,03:31,16,desktop,Once a week,35 - 44 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Excessive sweater,Has a fragrance I like
554,1,4,3,3,It is good that no matter how hot it gets this product will stop me perspiring too much.,I would like to know the ingredients before I make a decision on purchase.,Instead off Ice Cube Encaps I would call it Cool Cube Encaps cooling when you need it.,1,2,4,4,4,5,4,1,1,3,1,2,5,6,5,5366279,08-08-2020,04:16,08-08-2020,04:26,50.41666667,desktop,Twice a week,65 years +,I don’t have any children,Australia,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
555,1,5,4,5,I like the technology which release the cooling ingredients at the certain level of temperature and which will helps in cooling down body and will also gives comfort and freshness ,No nothing particular ,No it's all set,5,5,4,5,5,1,2,1,1,2,7,6,6,6,6,7561395,08-08-2020,04:41,08-08-2020,04:48,36,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against wetness
556,1,5,5,5,That it works according to your body temp.,Nothing,n/a,5,4,5,5,5,1,2,1,1,1,5,6,7,7,7,7668638,08-08-2020,04:58,08-08-2020,05:03,21.58333333,desktop,3+ times a week,55 - 64 years,I don’t have any children,Australia,Roll-on,No,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
557,1,5,5,5,good product,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,9074641,08-08-2020,05:04,08-08-2020,05:05,8.636363636,desktop,,,,,,,,,,
558,1,5,5,5,good one,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,9074670,08-08-2020,05:48,08-08-2020,05:50,9.909090909,desktop,,,,,,,,,,
559,1,5,5,5,"It would make someone comfortable doing their daily activities despite the very humid environment. You will not be ashamed to say ""hi"" to whoever you meet and wave your hands with all your might!","since it will release cooling ingredients when activated by body temperature, it might cause stains or irritations in the skin.",n/a,4,4,3,5,5,2,2,2,1,1,6,6,4,7,7,8641838,08-08-2020,05:52,08-08-2020,06:07,75.5,desktop,3+ times a week,18 - 24 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
560,1,4,4,4,It seems like it would work well,What is the cost,Does it have a scent,5,5,4,5,5,2,1,1,1,1,6,6,6,6,7,5416733,08-08-2020,06:01,08-08-2020,06:05,16.66666667,desktop,Twice a week,45 - 54 years,I don’t have any children,US,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
561,1,3,4,5,It might be good in high humidity,n/a,List ingredients,4,4,4,5,5,1,1,1,1,1,5,6,5,7,7,5412842,08-08-2020,06:45,08-08-2020,06:51,31.33333333,desktop,Twice a week,55 - 64 years,One,Australia,Roll-on,Yes,"I use it most days, but not every day",Female,Heavy sweater,It prevents / controls against odour
562,1,4,4,5,be great in an assie summer,na,feel refreshing,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,5365890,08-08-2020,07:29,08-08-2020,14:32,2115.75,desktop,Never,25 - 34 years,One,Australia,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,Has a fragrance I like
563,1,5,3,5,If it can be done its a wonderful thing.,"How the product retains the ability to do this, then releases it at the right time? does the sweat break down a bubble of chemicals which then release their contents?","Information on effectiveness timelines, temperature bands, effectiveness trials are all needed.",4,4,5,5,5,2,2,1,1,1,5,5,7,7,7,5337577,08-08-2020,07:40,08-08-2020,07:54,70.5,mobile,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I only use it on specific occasions,Male,Light sweater,It prevents / controls against odour
564,1,2,2,1,Nothing,Would like to know what the ingredients are so until then it is a thumbs down from me,Just need more detail,3,2,3,3,3,2,2,2,3,3,3,3,3,3,3,5348166,08-08-2020,08:00,08-08-2020,08:06,29.16666667,desktop,Few times a month,65 years +,I don’t have children under the age of 18,UK,,No,I rarely / never use deodorant,Female,Normal sweater,I don't use any
565,1,5,5,5,If it does what it claims I would buy it,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5390613,08-08-2020,08:26,08-08-2020,08:31,23.54545455,desktop,Once a week,55 - 64 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
566,1,3,3,1,Nothing,Not interesting. ,Ni,3,3,4,4,3,3,3,4,3,4,4,5,5,4,4,7554349,08-08-2020,08:59,08-08-2020,09:03,17.58333333,desktop,Twice a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
567,1,5,4,5,it is new concept to me. i feel this type sometimes. so i will try this.,it will help us if the price will show.,n/a,5,5,4,5,4,3,5,4,5,4,6,6,7,7,6,8604385,08-08-2020,09:26,08-08-2020,09:30,21.5,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
568,1,4,4,4," The on demand cooling sensation to keep me fresh, being heavy sweater like me in a humid hot country, I need it a lot.",n/a,not only 1 person but more images of person sweating,2,4,4,5,5,2,1,1,1,1,4,6,6,7,7,8670357,08-08-2020,11:11,08-08-2020,11:23,59.75,desktop,3+ times a week,45 - 54 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
569,1,5,4,5,cooling sensation in hot climate ,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,6,6,5,7,7719336,08-08-2020,11:25,08-08-2020,11:48,117.9166667,desktop,3+ times a week,45 - 54 years,One,India,Pump spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
570,1,1,3,1,nothing,n/a,no,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5368667,08-08-2020,11:37,08-08-2020,11:40,17.66666667,desktop,3+ times a week,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against odour
571,1,4,3,3,Can control ,Not sure ,Not ,3,5,4,5,5,3,1,2,1,1,4,7,5,7,7,5361218,08-08-2020,12:30,08-08-2020,12:36,29.5,desktop,Less often,35 - 44 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
572,1,4,2,4,It giving cooling sensation while keep sweat under control.,hard to believe,more explanation of product and its ingredients.,5,4,4,5,5,1,3,3,1,1,5,4,5,6,6,7589755,08-08-2020,13:03,08-08-2020,13:09,26.91666667,desktop,3+ times a week,35 - 44 years,Three,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
573,1,5,3,3,I like that it reapplies itself in a sense ,Just not sure if it would actually work ,Na,3,3,4,5,5,3,3,1,1,1,3,3,4,7,7,5335205,08-08-2020,13:07,08-08-2020,16:33,1028.666667,mobile,Never,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
574,1,4,4,4,keeps me cool,n/a,n/a,4,4,4,4,4,2,1,1,1,1,5,6,6,5,6,5340115,08-08-2020,13:40,08-08-2020,13:45,25,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
575,1,5,4,4,I like that it will react to my body temperature.,N/A,Nothing at all.,4,4,4,5,4,2,1,1,1,1,5,7,7,7,7,6901546,08-08-2020,14:23,08-08-2020,14:26,16.90909091,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
576,1,4,4,3,keeps me fresh in any climate.,none so far,none,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,7742253,08-08-2020,14:46,08-08-2020,14:56,52.36363636,desktop,3+ times a week,45 - 54 years,One,India,Stick,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
577,1,4,3,5,That it gives me the interesting feeling of how it would work and also the cooling sensation provided to help in the warmer months ,nothing at all. ,There is nothing i would want to change ,4,4,4,4,4,1,4,5,5,4,4,4,4,4,4,7670888,08-08-2020,14:47,08-08-2020,14:50,17,desktop,Twice a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
578,1,4,3,3,cooling sensation,n/a,n/a,4,4,2,4,4,1,1,1,1,1,5,6,6,7,7,8664062,08-08-2020,14:53,08-08-2020,15:05,58.58333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,Philippines,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
579,1,5,4,5,Dual purpose is great,Depends on the chemicals,nothing,5,5,5,5,5,1,1,1,2,1,7,7,7,7,6,6906039,08-08-2020,15:04,08-08-2020,15:07,16.58333333,desktop,Twice a week,45 - 54 years,Two,US,Stick,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
580,1,5,4,5,I like the claims that is challenging to prove it.,not so believable.,nothing it looks well.,4,5,4,5,5,3,1,1,1,1,6,6,6,6,6,7831428,08-08-2020,16:02,08-08-2020,16:08,28.08333333,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
581,1,5,5,5,Its a dynamic idea and refreshingly new product. It got a great concept name which gives me an incentive to seek it out and try.,"In that description, I find the term ""Encap"" both luring but also its not described so i feel that is poorly ellaborated upon.",I would add a single sentence explaing what an Encap is and how it applies here.,4,5,5,4,5,3,1,2,1,1,4,6,5,6,5,7639256,08-08-2020,16:54,08-08-2020,17:02,42.66666667,desktop,3+ times a week,35 - 44 years,One,Australia,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
582,1,5,3,5,The promise that it won’t let you sweat even if you are in a hot environment ,N/A,N/A,4,5,4,5,5,1,2,1,2,2,5,6,6,7,7,8636625,08-08-2020,16:55,08-08-2020,17:11,81.91666667,mobile,Once a week,25 - 34 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
583,1,4,5,4,I like that the product reads my body requirements and acts upon it,n/a,N/a,3,3,4,4,4,2,2,1,1,1,3,4,5,6,6,5348705,08-08-2020,16:58,08-08-2020,17:05,38.08333333,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
584,1,4,3,4,That it could you too,Nothing,Like to know the fragrance,3,4,4,5,5,3,1,1,1,1,3,7,6,7,6,5378624,08-08-2020,17:01,13-08-2020,14:47,35330.16667,mobile,3+ times a week,35 - 44 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
585,1,4,4,4,I like it's cooling effects and it keeps you fresh throughout the day.,I see to not dislike it.,No I don't think so.,4,4,5,4,4,3,3,3,1,1,5,6,6,6,6,7618358,08-08-2020,17:45,08-08-2020,17:49,23.90909091,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,US,Soft solid (clinical),Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
586,1,4,3,3,It catering for everyone 's needs it doesn't aim only on a certain gender but can be used by both genders,No sure if it organic because some skins are sensitive,Might probably add some information of the ingredients ,3,4,4,4,4,1,1,1,1,1,4,5,4,6,6,7618586,08-08-2020,18:18,08-08-2020,19:18,325.1818182,desktop,3+ times a week,25 - 34 years,Three,South Africa,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
587,1,4,3,3,the cooling effect,no protection against odours,no protection against odours,2,4,4,3,5,3,1,1,1,1,3,5,5,5,7,5342162,08-08-2020,18:55,08-08-2020,20:01,328.8333333,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
588,1,4,3,3,it shall keep me cool in hot & humid environment ,that it would be activate dby my body temperature. ,the information regarding the release of cooling sensation effect,3,4,3,4,4,3,1,1,1,1,4,5,4,5,5,7831592,08-08-2020,19:03,08-08-2020,19:13,48.08333333,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
589,1,4,4,4,It works according to body temperature ,Nothing as of now ,N/a,4,5,4,5,5,2,1,1,1,1,5,5,5,7,5,8183525,08-08-2020,19:34,08-08-2020,19:43,45.08333333,desktop,,35 - 44 years,,India,,,,Male,,
590,1,5,4,5,It's work very nice and according to our body temperature,n/a,n/a,4,4,4,5,4,1,1,1,1,1,6,6,6,7,7,8149848,08-08-2020,19:44,08-08-2020,19:49,27.83333333,desktop,,25 - 34 years,,India,,,,Male,,
591,1,4,4,4,Keeps you feeling fresh,Nothing,Not applicable,4,5,4,4,4,3,2,1,2,1,5,5,6,6,6,6918469,08-08-2020,20:31,08-08-2020,20:36,24.08333333,mobile,Less often,35 - 44 years,I don’t have children under the age of 18,US,Gel,Yes,I use it at least once a day,Female,Excessive sweater,It cares for my skin
592,1,3,4,2,easy to use,n/a,n/a,2,4,4,4,4,2,1,1,1,1,4,6,5,4,5,6892794,08-08-2020,21:23,08-08-2020,21:26,17.83333333,desktop,Twice a week,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
593,1,5,4,5,on-demand cooling.,n/a,n/a,4,5,4,5,5,2,1,1,1,1,5,6,6,7,7,6900932,08-08-2020,21:53,08-08-2020,22:00,36.41666667,desktop,Twice a week,18 - 24 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Excessive sweater,It prevents / controls against wetness
594,1,4,4,3,helps stop sweating,how does it work,n/a,3,3,3,4,4,3,1,2,1,1,4,4,5,5,5,5373249,08-08-2020,22:26,08-08-2020,22:41,83.36363636,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
595,1,1,2,1,well it is a deoderant,"since your body temp doesn't really change unless your ill or the weather is terrible i don't see how having it activated by body temp makes sense, as it will 'run out' bu the time you go anywhere unless you keep reapplying it",i wouldn't make or use this sort of product as i don't think it works,1,2,2,5,5,4,3,3,1,1,1,5,4,7,7,7589762,08-08-2020,22:59,08-08-2020,23:03,18.16666667,desktop,Never,45 - 54 years,I don’t have any children,UK,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
596,1,5,5,5,"Keeping me cool! I suffer from hot climate, this would be perfect for me!",n/a,n/a,4,5,3,5,4,1,1,1,1,3,6,7,5,7,4,7618084,08-08-2020,23:45,09-08-2020,01:30,520.5833333,desktop,3+ times a week,35 - 44 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
597,1,5,3,4,If it works as promised it certainly seems like it helps you stay fresh during a commute. I travel a lot for my work so sometimes it's like I have hours of commute time so this would help me a lot.,n/a,n/a,3,4,4,5,5,3,2,2,1,1,1,5,5,7,7,5445760,08-08-2020,23:56,09-08-2020,00:09,63.41666667,desktop,Less often,45 - 54 years,I don’t have any children,US,Stick,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against odour
598,1,5,5,5,Natural product and from natural ingredients,nothing,n,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7912849,09-08-2020,00:04,09-08-2020,00:10,31.54545455,desktop,,35 - 44 years,,US,,,,Male,,
599,1,5,5,5,Natural product,n,n,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8372148,09-08-2020,00:31,09-08-2020,00:34,15.90909091,desktop,,25 - 34 years,,US,,,,Male,,
600,1,3,3,3,its new,nothing,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5337104,09-08-2020,00:42,09-08-2020,00:44,13.09090909,desktop,Never,35 - 44 years,I don’t have any children,Australia,Roll-on,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
601,1,5,4,4,"Sweating, and smelling is a problem in hot weather. If this product does as it says it will be something new and exciting - and useful",How long does it last - it does not say. Do I need to apply it frequently?,Is it a convenient spray on or a roll on,4,5,5,5,5,3,1,1,1,1,4,7,7,7,7,7565227,09-08-2020,02:34,09-08-2020,02:39,22.91666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against wetness
602,1,4,3,2,Its different,n/a,n/a,5,5,5,5,5,1,1,1,1,1,5,7,7,7,7,7639354,09-08-2020,04:11,09-08-2020,04:14,14.41666667,desktop,Never,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Light sweater,Has a fragrance I like
603,1,4,4,4,It`s very cooling.,n/a,n/a,4,5,5,4,4,1,1,1,1,1,6,7,7,6,6,7719286,09-08-2020,04:33,09-08-2020,04:38,23.75,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It’s natural / contains natural ingredients
604,1,5,2,3,"If it did work, the idea of having a deodorant that releases cooling ingredients when I am hot and humid is wonderful and something that I would like to have.","There is nothing to dislike, the whole idea of it is terrific.","There is nothing I would like to change at the moment, however I would like to trial the product to see if it really works.",4,5,5,5,5,1,1,1,1,1,5,7,6,7,7,5551783,09-08-2020,06:19,09-08-2020,06:30,57.16666667,desktop,Less often,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,
605,1,5,4,4,Keeps me cool and fresh no matter the climate conditions,N/a,N/a,4,5,5,5,5,3,1,1,1,1,4,6,6,7,7,7668670,09-08-2020,06:36,09-08-2020,06:41,26.33333333,mobile,3+ times a week,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
606,1,4,4,3,It offers another purchasing option if this situation arises in your day.,I wonder if there's any side effects,n/a,1,4,4,4,4,4,1,1,1,1,2,7,7,7,7,5346514,09-08-2020,07:11,09-08-2020,07:44,164.0833333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
607,1,5,5,5,good product,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,9080384,09-08-2020,08:13,09-08-2020,08:15,9.909090909,desktop,,,,,,,,,,
608,1,5,5,5,everything,nothing,no,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,9080624,09-08-2020,08:35,09-08-2020,08:37,9.363636364,desktop,,,,,,,,,,
609,1,5,5,5,It is nice,nothing,no,5,5,5,5,5,3,3,3,3,3,7,7,7,7,7,9080816,09-08-2020,09:20,09-08-2020,09:25,28.90909091,desktop,,,,,,,,,,
610,1,5,3,4,The on demand cooling sensation,n/a,n/a,4,2,4,5,5,2,1,1,1,1,6,7,7,7,7,5362982,09-08-2020,09:35,09-08-2020,09:44,46.72727273,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
611,1,3,3,3,It would be good for people which have problems with to much sweat,Not sure this would work and it would not be for me,N/A,2,3,2,3,2,3,3,3,3,3,4,4,4,4,4,5411324,09-08-2020,09:37,09-08-2020,09:42,25.91666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Non-sweater,It does not cause white marks / stains on skin or clothes
612,1,5,3,4,It releases cooling ingredients,n/a,n/a,4,5,4,5,5,2,1,1,1,1,5,7,7,7,7,7719107,09-08-2020,09:50,09-08-2020,09:58,44.27272727,desktop,Less often,35 - 44 years,Two,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
613,1,4,3,4,Cooling sensation,n/a,n/a,4,4,4,4,5,1,3,2,1,1,6,5,4,7,7,7668600,09-08-2020,10:29,09-08-2020,10:55,128.5,desktop,Less often,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
614,1,3,4,4,no matter the climate,n/a,n/a,2,2,2,2,2,3,5,3,3,3,1,5,5,5,5,7639329,09-08-2020,11:29,09-08-2020,11:34,25.90909091,desktop,Few times a month,25 - 34 years,I don’t have any children,India,Pump spray,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
615,1,4,4,4,The fact it says it will keep you fresh no matter the climate during your journey.,n/a,Does it have a nice smelling fragrance?,3,4,4,4,4,3,1,1,1,1,3,6,6,6,5,5353398,09-08-2020,12:34,09-08-2020,12:39,24.5,desktop,Never,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It does not cause white marks / stains on skin or clothes
616,1,4,2,3,That fact that it keeps your body cool in any climate,n/a,n/a,2,5,2,5,5,2,1,1,1,1,3,6,6,7,7,6920399,09-08-2020,12:40,09-08-2020,12:56,80.16666667,mobile,Twice a week,25 - 34 years,I don’t have any children,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against odour
617,1,4,3,4,that it provides extra cooling sensation,n/a,n/a,5,5,4,5,5,1,1,1,1,1,6,7,7,6,7,8027262,09-08-2020,14:54,09-08-2020,14:58,20.75,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
618,1,4,4,5,Ice Cub Encaps releasing cooling ingredients to activate your body temperature,"NO EXPLANATION OF THE SCIENCE OF HOW THE BODY TEMPERATURE IS KEPT FRESH, NO MATTER THE CLIMATE, WHEN USING ICE CUBE ENCAPS",Offer evidence and proof the cooling ingredients keep you fresh not matter the climate around you,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5340674,09-08-2020,15:06,09-08-2020,15:17,55.16666667,desktop,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
619,1,4,5,5,As the product ensures to keep the body temperature cool by releasing cooling ingredients.,Not Applicable. There is nothing to dislike.,n/a,4,5,5,5,4,3,2,2,3,3,6,7,6,6,7,7763345,09-08-2020,15:41,09-08-2020,15:49,40.66666667,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
620,1,4,4,4,THe product releases cooloing ingridients to keep your body fresh,nothing,no,5,4,4,4,4,1,1,1,1,1,7,6,5,6,6,7763342,09-08-2020,17:47,09-08-2020,17:50,17.16666667,desktop,Once a week,35 - 44 years,Two,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
621,1,4,5,4,extra on-demand cooling sensation,nope,N/A,5,5,4,5,4,1,1,1,1,1,6,7,6,6,6,7553738,09-08-2020,18:00,09-08-2020,18:07,32.83333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
622,1,5,5,5,"India is a hot tropical country and we are facing hot weather most of the time of the year. So we have to face extreme heat exposure every time when we work outside of our home due to hot or humid weather. Like others I too want a product that keeps sweat under control and keeps me feeling cool, fresh with energy during working outside of my home. So I liked the idea of innovation of the product very much. ",No question of disliking rather I liked the innovative and useful idea of the product a lot. ,n/a,4,5,4,5,5,1,1,1,1,1,5,7,7,7,7,7812512,09-08-2020,19:22,09-08-2020,19:41,104,desktop,3+ times a week,45 - 54 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It’s natural / contains natural ingredients
623,1,5,4,4,"I like this is activated by body temp so is on-demand. If needed, it kicks in, if not, that's okay, too. ",I'm not sure of the actual ingredients. I would have to know more about those in order to commit to this product fully. ,na/,3,2,5,5,5,3,1,1,1,1,4,6,6,4,7,5383161,09-08-2020,21:05,09-08-2020,21:08,16.16666667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,US,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
624,1,5,4,4,something to cool you down in humidity which in turn will stop perperation,n/a,would like to know how long it would last,5,5,5,5,5,1,1,1,1,1,7,6,7,7,7,5337029,09-08-2020,21:47,09-08-2020,21:53,30.33333333,desktop,Never,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Light sweater,It prevents / controls against wetness
625,1,3,3,2,It releases cooling ingredients.,n/a,n/a,1,4,3,3,4,4,3,3,2,1,2,3,4,5,6,5446063,10-08-2020,00:33,10-08-2020,00:40,36.08333333,desktop,3+ times a week,45 - 54 years,One,US,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
626,1,5,3,3,I like the idea that a deodorant/ antiperspirant would have a cooling sensation. Would it be like the Icy part of Icy/ Hot without the Hot part?,n/a,n/a,5,5,5,5,5,1,1,1,2,1,6,7,7,7,7,5387148,10-08-2020,02:20,10-08-2020,02:29,43.58333333,desktop,3+ times a week,45 - 54 years,I don’t have any children,US,Gel,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
627,1,5,4,5,I like the product very much and it is cool and relevant too.,Nothing all the features are excellent and amazing too. ,n/a,5,5,4,4,4,4,5,5,4,4,6,7,7,6,7,7554967,10-08-2020,04:09,10-08-2020,04:14,24.58333333,desktop,Once a week,55 - 64 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against odour
628,1,5,4,5,best product,nothing,no,5,5,5,5,5,2,2,2,2,2,7,7,7,7,7,7605532,10-08-2020,04:48,10-08-2020,04:52,16.75,desktop,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
629,1,4,4,5,If I'm suffering from humidity and sweat then I'm always going for a product which gives me some coolness. Ice cube encaps a best idea.,If there is not much varient then I dislike the product.,n/a,5,4,5,5,5,1,1,1,1,1,6,7,7,7,6,7835532,10-08-2020,05:24,10-08-2020,05:41,81.5,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,Has a fragrance I like
630,1,1,1,1,Nothing really,It's very weird and in my opinion embarrassing to use,I wouldn't make this in the first place,1,1,1,1,1,3,3,3,3,3,4,4,4,4,4,5348561,10-08-2020,05:30,10-08-2020,05:34,18.5,mobile,3+ times a week,35 - 44 years,One,Australia,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,Has a fragrance I like
631,1,5,4,5,It gives me cooling effect and odour protection,n/a,n/a,4,4,5,4,4,1,1,1,1,1,6,7,6,7,7,8597499,10-08-2020,05:36,10-08-2020,05:39,14.5,desktop,3+ times a week,35 - 44 years,Two,India,Pump spray,Yes,I use it multiple times a day,Male,Heavy sweater,It does not cause white marks / stains on skin or clothes
632,1,3,3,2,Idk it sounds pleasing maybe,Idk, I’m not sure ,2,3,3,5,4,4,4,4,4,5,2,4,4,4,5,6974209,10-08-2020,06:17,10-08-2020,06:20,11.25,mobile,Once a week,25 - 34 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Male,Anxious sweater,It’s natural / contains natural ingredients
633,1,4,4,5,I like that it would keep sweat under control ,I am not sure I want to feel the cooling sensation,I would eliminate the cooling sensation. It does not sound pleasant,4,1,4,5,5,1,4,1,1,1,5,1,5,7,6,5407462,10-08-2020,06:18,10-08-2020,06:22,18.33333333,desktop,3+ times a week,35 - 44 years,Two,US,Aerosol Spray,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against odour
634,1,5,5,5,I like the cooling properties of the product that can help me going during extreme hot days by giving me cooling sensation.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7973513,10-08-2020,06:27,10-08-2020,06:37,56.90909091,mobile,,25 - 34 years,,India,,,,Male,,
635,1,4,5,5,Its ability to provide you with on-demand cooling sensation when you need it.,n/a,n/a,1,4,4,5,5,2,1,1,1,1,5,6,7,7,7,8665239,10-08-2020,08:13,10-08-2020,08:21,41,desktop,Less often,35 - 44 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
636,1,5,4,5,Activated by body temperature,Na,Na,4,4,4,5,5,2,3,3,1,1,4,4,4,6,7,5389427,10-08-2020,08:17,10-08-2020,08:21,21.83333333,mobile,3+ times a week,25 - 34 years,Two,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
637,1,5,4,4,It works not just to remove bad odour but also keeps you cool,nothing that I dislike,nothing. it is perfect,5,5,5,5,5,2,1,1,1,1,6,7,6,6,7,7741901,10-08-2020,08:41,10-08-2020,08:47,33.25,desktop,3+ times a week,35 - 44 years,One,India,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It’s natural / contains natural ingredients
638,1,4,4,5,I like the colour,It is too bright,I would remove comics,5,4,3,3,4,4,3,4,4,4,6,6,6,5,6,7554612,10-08-2020,09:04,10-08-2020,09:06,7.083333333,mobile,Twice a week,35 - 44 years,Two,South Africa,Soft solid (clinical),Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
639,1,5,5,5,New and different ,n/s,n/s,4,4,4,5,3,3,3,2,1,1,4,4,5,7,7,5373086,10-08-2020,09:05,10-08-2020,09:45,221.0909091,mobile,3+ times a week,35 - 44 years,I don’t have children under the age of 18,UK,Cream,Yes,I use it multiple times a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
640,,,,,,,,,,,,,,,,,,,,,,,6947497,10-08-2020,09:05,,,,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,US,Soft solid (clinical),Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
641,1,5,4,5,Ice cube encaps will protect my sweating during hot days,"Nothing, as long it will meet my expectations and affordable",N/A,4,5,4,5,4,1,1,1,1,1,6,7,7,7,6,5335578,10-08-2020,09:06,10-08-2020,09:16,56.45454545,mobile,Twice a week,55 - 64 years,One,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Light sweater,It’s natural / contains natural ingredients
642,1,5,5,5,Activated by your body temperature,Nothing,None,4,4,2,4,5,3,1,1,1,1,6,7,6,7,7,8666568,10-08-2020,09:06,10-08-2020,09:25,97.66666667,mobile,3+ times a week,25 - 34 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
643,1,4,4,3,It seems to be a product that can keep you feeling fresh for longer. It can be embarrassing when your deodorant isn't working as it should and it is hot.,n/a,n/a,4,4,4,5,5,2,1,1,1,1,5,5,5,6,6,5353053,10-08-2020,09:06,10-08-2020,09:10,19.75,desktop,Less often,35 - 44 years,One,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
644,1,5,5,5,good and cooling effect,nothing everything is good,no everythings seems to be perfect,5,4,5,5,5,1,1,1,1,1,7,7,6,7,7,7590149,10-08-2020,09:07,10-08-2020,09:08,9.833333333,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Roll-on,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against wetness
645,1,4,3,4,??? ????????,Nothing to dis like,No it is perfect,4,4,5,3,3,2,2,2,1,3,5,7,6,6,5,7554775,10-08-2020,09:07,10-08-2020,09:12,25.33333333,mobile,Twice a week,45 - 54 years,Four or more,India,Pump spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against wetness
646,1,3,4,3,Easy to use ,Don't know ,Not sure ,3,4,4,4,5,3,2,3,1,1,4,5,5,5,6,5330486,10-08-2020,09:07,12-08-2020,12:40,15466.08333,mobile,Never,45 - 54 years,I don’t have any children,UK,Roll-on,Yes,I use it at least once a day,Male,Light sweater,Has a fragrance I like
647,1,3,4,3,,,,,,,,,,,,,,,,,,,5372079,10-08-2020,09:07,,,,mobile,Less often,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
648,1,4,3,4,The name and idea ,Whether it’s believable ,Na,3,4,2,4,2,4,4,3,2,3,1,4,4,6,5,7304899,10-08-2020,09:07,10-08-2020,09:11,24.27272727,mobile,Never,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It does not cause white marks / stains on skin or clothes
649,1,5,4,5,sounds like a good product,all good,nothing,4,4,4,5,5,4,4,5,4,5,5,6,6,5,5,5334152,10-08-2020,09:07,10-08-2020,09:09,7.363636364,desktop,Once a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
650,1,5,5,5,"It is a deodorant that will not let you down,it keeps sweat under control and keeps you smelling fresh and cool",Nothing,Give a choice of fragrance,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7590270,10-08-2020,09:07,10-08-2020,09:11,17.58333333,desktop,3+ times a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against wetness
651,1,5,5,5,well its okay but cool,well its okay but cool,well its okay but cool,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,6925790,10-08-2020,09:08,10-08-2020,09:12,21.5,desktop,3+ times a week,35 - 44 years,I don’t have any children,US,Stick,Yes,I use it multiple times a day,Male,Non-sweater,It cares for my skin
652,1,5,4,3,the cooling effect,will nit work? cost?,n/a,3,5,5,5,5,3,1,1,1,1,1,6,6,7,7,7675917,10-08-2020,09:08,10-08-2020,09:10,10.83333333,desktop,Once a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
653,1,3,2,3,They are promising that the product will keep your under arm dry i think it will not hurt to try it,n/a,n/a,1,2,5,5,5,4,1,1,1,1,1,5,6,7,7,7554358,10-08-2020,09:09,10-08-2020,09:29,112.5454545,mobile,3+ times a week,25 - 34 years,Two,South Africa,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It cares for my skin
654,1,5,5,5,i work in a hotel and gets really hot and it would be perfect ,nothing at all bring it on,i would change mine to this,5,5,5,5,5,5,1,1,1,1,7,7,7,7,7,5336460,10-08-2020,09:09,10-08-2020,09:15,32.25,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
655,1,4,2,3,I like the idea of it being body temperature activated,"I'm not sure what the cooling ingredients might be, they might cause irritation",Maybe explain what the cooling ingredients might be,3,2,3,5,5,3,3,3,1,1,4,4,5,6,6,5336508,10-08-2020,09:09,10-08-2020,09:21,63.08333333,mobile,Few times a month,45 - 54 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
656,1,2,2,1,I AM DOUBTFULL ABOUT THIS DESIGN THOUGH,IT SEEMS THAT IT WILL WORK,CHANGE THE DESIGN,3,4,4,4,4,2,1,1,1,1,5,5,5,5,5,8664030,10-08-2020,09:09,10-08-2020,09:14,27.33333333,desktop,Few times a month,35 - 44 years,Two,Philippines,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
657,1,5,5,5,It's good to have a product that works in this climate,Nothing ,No nothing ,5,5,5,5,5,3,1,1,1,1,2,7,7,7,7,5377089,10-08-2020,09:09,10-08-2020,09:14,22.66666667,mobile,Less often,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It cares for my skin
658,1,4,4,5,The product gives cooling effect with good smell,Nothing,Adding product images,3,5,3,4,4,2,1,1,1,1,6,7,6,7,7,7554554,10-08-2020,09:09,10-08-2020,09:18,43,mobile,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
659,1,4,4,5,Cool one's body by releasing required coolness as per body temperature.,N/a,N/a,4,5,5,4,4,1,1,1,1,1,6,6,6,7,7,7764076,10-08-2020,09:09,10-08-2020,09:30,102.0833333,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I only use it on specific occasions,Male,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
660,1,5,3,4,"New , different , for me , curious and would be very apt as I sometimes carry extra clothes with me when very hot or standing up on crowded trains . Finding somewhere to park leaves me clammy so I would really find this a go to product.",Just curious as nothing works properly yet,I would say what the cooling agents were - a bit vague,3,5,5,5,5,2,1,1,1,1,4,6,6,7,7,5333550,10-08-2020,09:09,10-08-2020,09:16,31.83333333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
661,1,4,4,4,cooling sensations,n/a,n/a,4,4,4,4,4,1,1,1,1,1,7,7,7,7,7,5352229,10-08-2020,09:10,10-08-2020,09:14,22.83333333,desktop,3+ times a week,35 - 44 years,I don’t have any children,Australia,Pump spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
662,1,4,4,5,Everything perfect ,Nothing to dislike ,No wouldn’t change,4,4,4,5,4,4,4,4,4,4,6,6,6,6,6,5367226,10-08-2020,09:10,10-08-2020,09:12,13.18181818,mobile,3+ times a week,25 - 34 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
663,1,4,4,3,Works in hot&humid areas,NA,NA,4,4,4,5,5,2,2,3,1,1,4,4,4,6,7,5434107,10-08-2020,09:10,10-08-2020,09:16,31.58333333,mobile,Less often,35 - 44 years,I don’t have any children,US,Stick,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
664,1,4,3,4,It sounds innovative.,I am worried that it will be very expensive.,"The name Balu, is weird.",4,3,5,5,5,1,3,1,1,1,6,5,6,7,7,5364673,10-08-2020,09:10,10-08-2020,09:17,36.33333333,desktop,Few times a month,45 - 54 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
665,1,,,,,,,,,,,,,,,,,,,,,,6949581,10-08-2020,09:10,,,,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it multiple times a day,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
666,1,5,4,5,Keeps me cool and fresh I suffer with menopause so hot sweats are terrible as is the amount that I sweat on a hot day,N/a,Handy size to carry when out and about that is discreet ,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5347966,10-08-2020,09:10,10-08-2020,09:16,26.41666667,mobile,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
667,1,5,5,4,it appears to be very different and appealing to me,there is nothing to dislike about this product,Perhaps the word Encaps it does not grab you,4,5,5,5,5,3,1,2,1,1,4,7,7,7,7,5361202,10-08-2020,09:10,10-08-2020,09:15,21.16666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
668,1,4,4,4,cooling when required,nothing,n/a,4,4,4,4,4,3,4,4,3,4,5,6,6,5,6,7763482,10-08-2020,09:10,10-08-2020,09:16,29.08333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,No,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
669,1,5,4,5,"That it will keep sweat under control, hence I won't feel embarrassed.",N/A,N/A,4,5,4,5,5,2,1,2,1,1,6,7,6,7,7,8614236,10-08-2020,09:11,10-08-2020,09:22,63.27272727,desktop,Less often,45 - 54 years,Three,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
670,1,4,3,5,Working in a warm environment this would be good. ,N/a,N/a,4,5,5,5,5,3,2,1,1,1,4,6,7,7,7,5372862,10-08-2020,09:11,10-08-2020,09:18,38.27272727,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
671,1,4,4,3,keeps u cool,nil,n/a,4,4,4,4,4,1,1,1,1,1,6,5,6,6,6,5337657,10-08-2020,09:11,10-08-2020,09:15,20.41666667,desktop,Less often,65 years +,I don’t have children under the age of 18,Australia,Pump spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
672,1,5,4,4,keeps you fresh and clean for longer,n/a,n/a,5,5,4,4,5,2,1,1,1,1,7,7,6,6,7,5367086,10-08-2020,09:12,10-08-2020,09:16,22.66666667,desktop,Never,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
673,1,3,3,3,Cost,Nothing,N/a,3,3,3,3,3,3,3,3,3,3,5,5,5,5,5,7299550,10-08-2020,09:12,10-08-2020,10:49,532.3636364,mobile,Less often,45 - 54 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,Has a fragrance I like
674,,,,,,,,,,,,,,,,,,,,,,,5349243,10-08-2020,09:12,,,,mobile,Twice a week,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
675,1,4,4,4,It gives a cooling sensation great for hot humid summer days,Nothing,No it sounds great,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,5362501,10-08-2020,09:12,10-08-2020,09:16,18.5,mobile,Once a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
676,1,4,4,4,A common problem in summers and very helpful to be confident in hot weather when we are commuting for work in hot season,None,N/A,4,4,5,5,4,3,2,2,1,1,4,5,5,6,6,5376023,10-08-2020,09:12,11-08-2020,09:46,7368.75,desktop,Less often,35 - 44 years,Two,Australia,Pump spray,Yes,"I use it most days, but not every day",Female,Light sweater,It cares for my skin
677,1,4,4,4,The long lasting effect,Don't know the price,N/A,3,5,5,4,4,3,3,1,2,3,6,7,6,6,5,7681816,10-08-2020,09:12,10-08-2020,09:18,26.33333333,mobile,3+ times a week,65 years +,Two,Australia,Cream,Yes,I use it at least once a day,Male,Non-sweater,It cares for my skin
678,1,3,3,2,"Being bit like nitrous on a car - A boost when needed... And of course, the cooling (depending on any particular ingredients) may sooth too","Without a real effort, it'll just be something that smells nice when hotted up, along with something menthol like to only give the sensation of cooling, without actually helping properly. It'll also be overpriced to capture the wealthier market...","If possible, it would be nice to have a 'Scent booster' activated by heat/sweat, along with a REAL coolant that activates but Reduces Any Irritation, as well as soothes the areas. So same, yet not same - The difference is in the active element, rather than using deceptively clever wording to just give the 'impression' of helping...",3,5,5,5,5,3,1,1,1,1,3,6,7,6,7,5361227,10-08-2020,09:13,10-08-2020,09:24,61.81818182,desktop,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against odour
679,1,4,4,3,Ice cube Encaps relases cooling ingredients to keep me fresh,n/a,n/a,3,5,4,4,5,3,1,1,1,1,6,6,6,7,7,7554636,10-08-2020,09:13,10-08-2020,09:18,26.91666667,desktop,3+ times a week,45 - 54 years,One,India,Pump spray,No,I only use it on specific occasions,Female,Light sweater,Has a fragrance I like
680,1,3,4,4,It seems convenient,Nothing,Nothing,4,4,2,3,2,3,4,4,4,3,3,5,5,5,3,7589707,10-08-2020,09:13,10-08-2020,09:14,6.25,desktop,Twice a week,35 - 44 years,Three,UK,Stick,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
681,1,4,4,4,Ability to keep one cool and fresh in hot conditions. ,n/a,n/a,1,4,4,4,4,4,5,1,1,1,2,6,6,6,6,5363004,10-08-2020,09:13,10-08-2020,09:43,147.5833333,mobile,Few times a month,35 - 44 years,I don’t have any children,South Africa,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,It cares for my skin
682,1,5,4,4,The cooling effects mentioned ,Nothing it’s sounds good ,Nothing ,2,4,5,5,5,2,1,1,1,1,4,5,7,7,7,6899862,10-08-2020,09:13,10-08-2020,09:16,12.16666667,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
683,1,3,3,3,It’s unique ,Not sure ,N/a,4,4,4,3,4,3,3,3,3,3,4,5,6,7,3,6912121,10-08-2020,09:14,10-08-2020,09:17,16.25,mobile,Twice a week,35 - 44 years,Two,US,Gel,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
684,1,4,4,4,It reads as a reliable deodorant ,Nothing ,No,2,4,4,5,5,2,1,1,1,1,4,5,7,7,7,5337343,10-08-2020,09:14,10-08-2020,09:18,24.54545455,mobile,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
685,1,,,,,,,,,,,,,,,,,,,,,,7676242,10-08-2020,09:14,,,,mobile,Once a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
686,1,5,4,5,"Cooling effect with deodorant. It's quite new , interesting and useful product. ",n/a,n/a,5,4,5,5,5,1,1,1,1,1,6,7,7,7,7,7605176,10-08-2020,09:14,10-08-2020,09:22,40.5,mobile,Twice a week,45 - 54 years,One,India,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
687,1,4,4,4,Cooling property,n/a,n/a,4,4,4,4,4,2,1,1,1,1,3,5,5,5,5,7830766,10-08-2020,09:14,10-08-2020,09:19,23.41666667,desktop,3+ times a week,35 - 44 years,One,India,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
688,1,4,4,4,"It's description , uses and it's impact on body.",N/a,Price should be lesser,4,3,3,4,5,2,3,5,1,1,6,4,6,5,7,7763372,10-08-2020,09:14,10-08-2020,09:20,28.33333333,mobile,3+ times a week,35 - 44 years,Two,India,Lotion,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
689,1,4,4,4,the cooling sensation and keeping me fresh always,"it it not written if this product is naturally made, no harmful ingredients ",a little beacuse i want to put if it is naturally made and no harmful chemicals,4,5,5,5,5,3,1,1,1,1,4,7,7,7,7,8587986,10-08-2020,09:15,10-08-2020,09:25,56.63636364,desktop,Twice a week,35 - 44 years,Two,Philippines,Roll-on,Yes,"I use it most days, but not every day",Female,Heavy sweater,"It's free from (aluminium, chemical or fragrance)"
690,1,3,3,1,NOTHING,I DO NOT BELIVE THAT IT WILL WORK,JUST DONT DO TI ,2,2,4,3,3,1,1,1,1,1,4,4,4,4,4,5502816,10-08-2020,09:15,10-08-2020,09:19,21.66666667,desktop,Never,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
691,1,4,4,5,Perfect for all summer activity by large number of people,None,N/a,5,4,4,4,3,1,1,1,2,3,5,6,6,6,5,8589986,10-08-2020,09:15,10-08-2020,09:22,37.66666667,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It’s natural / contains natural ingredients
692,1,5,4,4,I like the fact that it has a cooling sensation ,N/A,N/a,1,5,4,5,5,5,1,1,1,1,1,6,5,7,7,6899447,10-08-2020,09:15,10-08-2020,10:14,296.5833333,mobile,3+ times a week,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
693,1,5,3,5,The cooling factor ,None to dislike ,No,5,4,5,5,5,2,1,1,1,1,4,6,4,7,7,7763567,10-08-2020,09:15,10-08-2020,09:20,26.41666667,mobile,Twice a week,35 - 44 years,Two,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
694,1,5,5,5,"would cool me the instant i put it on, would keep me cool thereafter",n/a,different fragrances,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7676208,10-08-2020,09:15,10-08-2020,09:17,12.90909091,desktop,3+ times a week,45 - 54 years,One,UK,Roll-on,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
695,1,,,,,,,,,,,,,,,,,,,,,,6898618,10-08-2020,09:15,,,,mobile,3+ times a week,35 - 44 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
696,1,4,,,,,,,,,,,,,,,,,,,,,6899396,10-08-2020,09:15,,,,desktop,Once a week,25 - 34 years,I don’t have any children,UK,Gel,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
697,1,2,3,2,"I'm sure it would be perfect for commuters on the London Underground, but I can't imagine having any use for it myself. ",Nothing. It just isn't for me.,"no, I don't think so.",3,3,4,5,5,1,2,1,1,1,7,5,5,7,7,5335431,10-08-2020,09:15,10-08-2020,09:20,23.58333333,mobile,Never,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
698,1,4,5,5,Looks appealing ,Nothing ,I would add some colour,5,3,5,5,5,5,5,5,5,5,6,7,6,7,5,5403518,10-08-2020,09:16,10-08-2020,09:21,28.41666667,mobile,Twice a week,35 - 44 years,One,US,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
699,1,4,3,2,It would aide in preventing sweating ,Not sure it would work any better than my usual anti perspiration deodorant ,Change the name from Ice s Cube Encaps ,1,2,4,4,5,3,1,1,1,1,3,5,4,7,7,5361252,10-08-2020,09:16,11-08-2020,23:07,11356.5,mobile,3+ times a week,35 - 44 years,Four or more,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
700,1,4,4,5,l like the cooling sensation meaning it will keep me fresh all time ,nothing ,no change it must stay like that,3,5,4,4,5,3,2,1,1,1,4,7,7,6,6,6892917,10-08-2020,09:16,10-08-2020,09:26,49.5,desktop,Twice a week,25 - 34 years,One,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,Has a fragrance I like
701,1,4,4,4,Cooling effect in humid climate.,I am doubtful about it whether it is friendly to skin or not,n/a,4,5,4,5,4,1,1,1,1,1,6,6,6,7,7,7831297,10-08-2020,09:16,10-08-2020,09:32,79.58333333,mobile,3+ times a week,45 - 54 years,One,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
702,1,3,3,3,The cooling sensation,Nk assurance for sweat control,I would add the assurance that we found a way to control sweating in underarms,2,4,5,4,5,4,1,1,1,1,3,6,6,7,7,8596184,10-08-2020,09:16,10-08-2020,09:23,35,mobile,Few times a month,35 - 44 years,Two,Philippines,Cream,Yes,I use it at least once a day,Female,Non-sweater,It prevents / controls against odour
703,1,4,4,3,The cooling sensation,Nothing,N/a,3,4,4,4,4,3,2,2,1,1,4,5,5,6,6,5367658,10-08-2020,09:16,10-08-2020,09:20,21.25,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
704,1,3,3,5,Cooling sensation,Nothing,Nothing,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,7764011,10-08-2020,09:16,10-08-2020,09:20,17.83333333,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,India,Roll-on,No,I use it at least once a day,Female,Light sweater,Has a fragrance I like
705,1,3,4,4,,,,,,,,,,,,,,,,,,,8637002,10-08-2020,09:16,,,,mobile,Once a week,25 - 34 years,I don’t have children under the age of 18,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
706,1,3,3,3,Potential to be different but scope to focus in more ,Limited appeal to jump out ,Less text ,4,4,4,4,4,,,,,,,,,,,6899342,10-08-2020,09:16,,,,mobile,3+ times a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
707,1,4,4,4,I work in very hot area and this product would help.,n/a,n/a,4,4,4,4,4,1,1,1,1,1,5,5,6,6,5,7670871,10-08-2020,09:16,10-08-2020,09:22,25.83333333,desktop,3+ times a week,35 - 44 years,Three,Australia,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against odour
708,1,2,4,2,It might work a little better.,I don't think this is a big problem for me.,n/a,3,4,2,4,2,3,3,4,5,3,5,5,3,5,6,5405853,10-08-2020,09:17,10-08-2020,09:27,53.58333333,desktop,Twice a week,35 - 44 years,I don’t have any children,Australia,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
709,1,4,3,5,The fact that it has extra ingredients to keep me cool.the whole day ,Nothing to dislike at the moment maybe after using it i will have an answer ,N/a,5,5,3,5,5,3,1,1,1,1,7,7,7,7,7,5365135,10-08-2020,09:17,10-08-2020,09:35,101.8181818,mobile,Twice a week,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Excessive sweater,It cares for my skin
710,1,5,5,4,It's really feasible and adjusted to my situation. ,nothing to dislike.,N/A,5,4,5,4,5,3,4,3,4,3,6,6,6,5,6,7912696,10-08-2020,09:17,10-08-2020,09:21,23.63636364,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
711,1,3,4,2,Any thing that keeps you cool and dry is good,Need to know cost,No,4,4,4,5,5,,,,,,,,,,,5403671,10-08-2020,09:17,,,,mobile,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
712,1,4,3,5,"would keep me cool, reduce sweating",n/a,n/a,4,4,4,5,5,3,2,2,1,1,4,5,5,7,7,7619018,10-08-2020,09:17,10-08-2020,09:23,31,desktop,3+ times a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
713,1,4,3,3,"If it works i will buy and use it but, like all new products i need to try it to assess if it is right for me. Therefore you need to test it widely before launch.",I haven't tried it.,Without trying it how would i know?,3,5,5,5,5,2,2,2,1,1,4,6,6,7,7,5343235,10-08-2020,09:17,10-08-2020,09:22,26.66666667,desktop,Twice a week,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
714,1,4,4,4,NEW AND INNOVATIVE,not sure how it will work,no,4,5,5,5,4,4,1,1,1,1,4,7,7,6,6,6899452,10-08-2020,09:17,10-08-2020,09:20,13,desktop,3+ times a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against wetness
715,1,3,3,2,cannot tell what they are,it is unclear,wHAT ARE ENCAPS,4,4,4,4,4,2,1,1,1,1,5,5,6,6,5,5367751,10-08-2020,09:17,10-08-2020,09:22,24.5,desktop,Once a week,65 years +,I don’t have any children,UK,Aerosol Spray,Yes,I rarely / never use deodorant,Male,Normal sweater,It prevents / controls against wetness
716,1,4,2,3,If it could deliever what it promises that would be great. I often have this similar issue with sweat when in these sorts of situations.,I've often felt that these sorts of products promise a great deal but don't deliver what I expect.,n/a,2,4,4,5,4,2,2,2,1,1,3,4,5,6,7,5335201,10-08-2020,09:18,10-08-2020,09:21,18.25,desktop,Less often,25 - 34 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
717,1,3,4,1,Cooling sounds good. ,My deodorant does not let me down so I don’t need this ,N/a,1,4,4,5,5,5,3,1,1,1,1,6,5,7,7,6883289,10-08-2020,09:18,10-08-2020,09:23,25.66666667,desktop,Less often,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
718,1,4,4,4,I like the cooling sensation it will give when I use it.,N/A,N/A,5,5,4,5,5,1,1,1,1,1,6,7,7,7,7,8588500,10-08-2020,09:18,10-08-2020,09:23,21.5,mobile,Twice a week,25 - 34 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
719,1,5,3,5,The fact it keeps you cool in hot weather and keeps sweat under control,not sure on what is used in its manufacter,N/A,3,4,4,5,5,2,1,1,1,1,1,6,6,7,7,5343251,10-08-2020,09:18,10-08-2020,09:24,29.75,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
720,1,4,4,4,rfsfsdgshfd,hg,no,2,2,2,2,2,1,1,1,1,1,5,5,5,5,5,6899395,10-08-2020,09:19,10-08-2020,09:23,22.33333333,desktop,Twice a week,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It cares for my skin
721,1,4,3,3,sounds great,would it really work?,??,3,4,4,4,4,3,3,3,1,1,3,5,4,6,6,5368310,10-08-2020,09:19,10-08-2020,09:21,11.54545455,desktop,Twice a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
722,1,5,5,5,FANTASTIC,Nothing,Nothing,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,7555243,10-08-2020,09:19,10-08-2020,09:23,22,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
723,1,4,3,4,great promise,none,n/a,3,1,4,4,4,3,4,3,1,1,4,2,5,6,5,5428698,10-08-2020,09:19,10-08-2020,14:03,1419.583333,desktop,Twice a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Anxious sweater,It prevents / controls against odour
724,1,4,4,3,Keeping underarms fresh in hot weather. ,None,n/a,4,3,4,4,5,3,2,3,1,1,4,4,5,5,6,5368551,10-08-2020,09:20,10-08-2020,09:25,26.66666667,desktop,3+ times a week,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
725,1,4,3,3,Not sure,Nothing,Nothing,1,4,3,2,3,3,3,3,3,3,3,3,2,2,3,5335682,10-08-2020,09:20,10-08-2020,09:22,9.916666667,mobile,Less often,35 - 44 years,Three,Australia,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It cares for my skin
726,1,4,3,3,It sounds ideal for when you are in very hot and sweaty conditions,I am not sure what exactly the product is - the description is very vague,The name isn't very catchy and it doesn't really tell you what it is,3,4,4,5,5,2,1,1,1,1,4,5,6,6,7,5333607,10-08-2020,09:20,10-08-2020,09:25,26.16666667,mobile,Twice a week,55 - 64 years,One,UK,Stick,Yes,I use it at least once a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
727,1,5,4,4,It is interesting and innovative ,None ,N/A,4,4,4,5,5,1,1,1,1,1,6,7,7,7,7,6895193,10-08-2020,09:20,10-08-2020,09:28,44.81818182,mobile,3+ times a week,25 - 34 years,Two,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
728,1,1,4,1,nothing,doesnt appeal,n/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,7555182,10-08-2020,09:20,10-08-2020,09:23,12.5,desktop,Never,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
729,1,2,1,1,"I don't like anything about the product, to be honest.","Body temperature remains constant, unless you are ill, so can't see how this would work.",Don't bother making it!,1,2,1,5,5,4,4,1,1,1,1,1,1,7,7,5367649,10-08-2020,09:21,10-08-2020,09:24,17.36363636,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Soft solid (clinical),Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
730,1,2,3,3,real person's problem,negative,make more positive,1,4,4,4,4,3,1,1,1,1,4,6,6,6,6,5396062,10-08-2020,09:21,10-08-2020,09:24,17.5,desktop,Never,65 years +,I don’t have children under the age of 18,US,Gel,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
731,1,3,5,5,Cooling sensation,Nothing,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5337335,10-08-2020,09:21,10-08-2020,09:24,17.25,desktop,3+ times a week,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
732,1,,,,,,,,,,,,,,,,,,,,,,5338612,10-08-2020,09:21,,,,desktop,Less often,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Non-sweater,It prevents / controls against wetness
733,1,5,5,5,everything,Nothing. ,Nothing,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,6908195,10-08-2020,09:21,10-08-2020,09:23,11.08333333,desktop,3+ times a week,35 - 44 years,Two,South Africa,Soft solid (clinical),Yes,I use it multiple times a day,Male,Light sweater,It prevents / controls against wetness
734,1,3,2,1,Good idea if practical,N/A,N/A,3,2,4,3,2,3,5,5,1,5,4,5,5,6,5,5342662,10-08-2020,09:21,10-08-2020,09:27,30.58333333,mobile,Few times a month,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Non-sweater,It cares for my skin
735,1,3,2,3,Not much..... ,It makes a big claim. I would like to test it in Africa. ,Not sure,1,3,4,4,5,5,3,2,3,1,1,4,4,3,7,5337508,10-08-2020,09:21,10-08-2020,09:26,25.66666667,mobile,Never,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
736,1,5,4,5,It gives a solution of sweat in hot and humid weather with ice as it will give us instant cooling sensation when we sweat. ,As such nothing but if the results are not up to date then there is nothing special in the product ,Will try to give some sort of assurance ,4,5,5,5,5,3,1,1,1,1,3,7,6,7,7,8607699,10-08-2020,09:21,10-08-2020,09:28,31.91666667,desktop,3+ times a week,35 - 44 years,One,India,Stick,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
737,1,3,3,3,None,None,None,2,2,2,2,3,2,4,3,3,2,3,2,3,4,4,5361079,10-08-2020,09:22,10-08-2020,09:23,6.666666667,mobile,Twice a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against wetness
738,1,4,3,3,,,,,,,,,,,,,,,,,,,5377519,10-08-2020,09:22,,,,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,Has a fragrance I like
739,1,4,4,4,Trust,N,N,4,5,4,4,5,4,3,4,3,4,5,5,4,4,6,7590376,10-08-2020,09:22,10-08-2020,09:24,9.666666667,mobile,Twice a week,35 - 44 years,One,India,Cream,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
740,1,3,3,2,Would be great for people who do sweat a lot,N/a,I would want to know how this actually works,1,3,3,4,4,4,3,3,2,1,4,5,5,6,6,5337257,10-08-2020,09:22,10-08-2020,09:26,21.91666667,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Non-sweater,It prevents / controls against odour
741,,,,,,,,,,,,,,,,,,,,,,,7681896,10-08-2020,09:22,,,,desktop,3+ times a week,45 - 54 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
742,1,4,4,4,Product gives provide fresh smell irrespective of climate and cool you down,Nothing,N/A,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,5336951,10-08-2020,09:22,10-08-2020,09:27,21.58333333,desktop,3+ times a week,55 - 64 years,One,Australia,Pump spray,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
743,1,4,4,4,To be able to have an deodarant that protect,n/a,n/a,4,4,4,4,5,2,2,3,1,1,5,5,5,7,7,5369466,10-08-2020,09:22,10-08-2020,09:26,18.16666667,mobile,Less often,25 - 34 years,I don’t have children under the age of 18,South Africa,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
744,1,4,4,5,"It sounds different and good, it sounds like it could help ",Nothing ,n/a,5,4,4,5,5,2,4,3,1,1,5,5,5,7,7,6898579,10-08-2020,09:22,10-08-2020,09:25,11.36363636,mobile,3+ times a week,25 - 34 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It does not cause white marks / stains on skin or clothes
745,1,5,5,5,The ingredients and it cool,N/a,n/a,5,4,4,4,4,1,2,1,1,1,7,6,7,7,7,6968004,10-08-2020,09:23,10-08-2020,09:34,55.08333333,mobile,Once a week,25 - 34 years,Two,US,Aerosol Spray,No,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
746,1,2,2,1,na,Is it already in the product? If not how would you put it on discreetly. If it is why not say its a feature of the deodorant rather than an additional separate entity.,Say its a feature rather than a separate product.,1,4,4,4,4,4,1,1,1,1,2,6,6,6,6,6899339,10-08-2020,09:23,10-08-2020,09:27,19.83333333,desktop,Twice a week,35 - 44 years,I don’t have any children,UK,Soft solid (clinical),Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
747,1,5,3,3,it cools you when needed,never heard of tis befoe - does it work?,n/a,1,5,5,5,5,4,1,1,1,1,2,6,7,7,7,5367542,10-08-2020,09:23,10-08-2020,09:25,13.41666667,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,It prevents / controls against odour
748,1,4,4,4,I love the on-demand cooling sensation technology. One of the better ideas I have seen discussed with antiperspirants and deodorants. ,n/a ,n/a,5,5,3,4,4,1,1,1,1,1,7,6,5,7,6,5376167,10-08-2020,09:23,10-08-2020,09:28,25.91666667,desktop,Twice a week,25 - 34 years,I don’t have any children,US,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
749,1,4,4,3,"Seems to answer a need we all have in hot, humid climates",Would it work?,"Not really, sounds good",2,4,4,4,4,1,1,1,1,1,5,6,6,6,6,7618364,10-08-2020,09:23,10-08-2020,09:29,29,mobile,3+ times a week,65 years +,Two,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
750,1,4,4,3,Seems new and different ,N/a,Maybe perfumed,4,4,2,4,4,5,1,1,1,1,2,2,2,1,1,6900744,10-08-2020,09:23,10-08-2020,09:28,22.33333333,mobile,Twice a week,25 - 34 years,Two,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Excessive sweater,It does not cause white marks / stains on skin or clothes
751,1,4,4,3,Extra protection no matter the heat level,Nothing in particular,Maybe pictures of women too,3,4,4,5,5,2,3,3,1,1,4,5,5,7,7,5383612,10-08-2020,09:23,10-08-2020,09:26,16.66666667,mobile,3+ times a week,35 - 44 years,Two,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
752,1,5,5,1,I absolutely love it and I am surprised no one has thought of it before hand. Original idea that would make our journeys during hot weather more bearable and would keep us cool and fresh. ,n/a,n/a,4,5,5,4,5,2,1,1,1,1,6,6,7,6,6,5372358,10-08-2020,09:23,10-08-2020,09:27,18.33333333,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
753,1,4,5,5,all,na,no,4,4,4,5,4,4,5,4,4,5,6,6,7,7,6,7742225,10-08-2020,09:23,10-08-2020,09:25,9,desktop,Twice a week,25 - 34 years,One,India,Gel,Yes,I use it at least once a day,Female,Heavy sweater,It cares for my skin
754,1,5,4,5,Icecaps under your arms that cooling feeling,N/a,N/a,4,5,4,4,4,1,1,1,1,1,6,6,5,7,6,6920048,10-08-2020,09:23,10-08-2020,09:27,21.72727273,mobile,Less often,45 - 54 years,One,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It cares for my skin
755,1,4,3,3,I like the concept not sure if it will work , Nothing ,N/a,4,4,5,5,5,1,1,1,1,1,4,4,5,6,7,7618800,10-08-2020,09:23,10-08-2020,09:28,27,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
756,1,5,5,5,Releases the deo as per body requirements,None,May be add exciting fragrance,5,5,5,5,5,1,1,1,1,1,6,7,6,7,7,7831903,10-08-2020,09:24,10-08-2020,09:33,45.16666667,mobile,3+ times a week,35 - 44 years,Three,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
757,1,5,4,5,I love that it’s activated by your own body temperature to provide instant and lasting cooling effects ,Nothing n/a,So far nothing. I’m interested in scents of this.,4,4,4,5,5,1,1,1,1,1,6,6,6,7,7,5375883,10-08-2020,09:24,10-08-2020,09:27,19.27272727,mobile,3+ times a week,35 - 44 years,One,Australia,Roll-on,Yes,I use it multiple times a day,Female,Anxious sweater,It does not cause white marks / stains on skin or clothes
758,1,4,3,4,,,,,,,,,,,,,,,,,,,5335483,10-08-2020,09:24,,,,mobile,Twice a week,35 - 44 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Excessive sweater,It prevents / controls against wetness
759,1,4,4,4,Keeps the body fresh inspite of sweating ,N/a,n/a,4,4,4,4,4,3,2,2,1,1,4,5,5,5,6,7670988,10-08-2020,09:24,10-08-2020,09:41,93.72727273,mobile,Twice a week,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Excessive sweater,It prevents / controls against odour
760,1,1,3,1,Nothing in particular,I just don't need this product.,N/a,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,6888079,10-08-2020,09:24,10-08-2020,09:27,13.25,mobile,3+ times a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,Has a fragrance I like
761,1,4,4,4,No mater climate it keep me fresh,All the ingredients are not natural,Mate it 199% natural,5,4,4,4,5,2,2,1,3,2,6,5,7,6,6,6893730,10-08-2020,09:24,10-08-2020,09:30,30.63636364,mobile,3+ times a week,35 - 44 years,Three,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It’s natural / contains natural ingredients
762,1,5,3,5,"Sweating, and the associated discomfort is a perennial issue for people in temperate regions, and I am one. Anything to control sweat is welcome, and a deo, more so.",n/a,n/a,4,4,4,5,5,2,2,2,1,1,5,6,6,7,7,7742117,10-08-2020,09:24,10-08-2020,09:32,40.91666667,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
763,1,5,4,4,This summer is very usful products,I like all,No,5,4,5,4,4,4,5,4,4,5,6,7,6,5,6,7589758,10-08-2020,09:25,10-08-2020,09:27,11,mobile,Twice a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
764,1,4,4,1,I think it would be great,Nothing,Nothing,5,5,4,5,5,1,2,1,1,2,7,7,7,7,7,6898765,10-08-2020,09:25,10-08-2020,09:29,22.91666667,mobile,Twice a week,Under 18 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
765,1,3,3,3,Its sell quality ,Its not clear,Yes,4,4,4,4,4,1,1,1,1,1,3,3,3,3,3,7618740,10-08-2020,09:25,10-08-2020,09:28,16.41666667,mobile,3+ times a week,25 - 34 years,One,South Africa,Roll-on,No,I use it at least once a day,Male,Normal sweater,It cares for my skin
766,1,4,4,4,gives you extra protection when you need it,nothing,seems just the right description,3,4,4,4,5,3,1,1,1,1,3,5,5,6,6,5367292,10-08-2020,09:25,10-08-2020,09:29,19,desktop,Few times a month,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
767,1,4,4,4,The concept seems to be innovative,N/a,N/a,4,4,4,4,4,1,1,1,1,1,6,6,6,6,6,7835315,10-08-2020,09:25,10-08-2020,09:29,20.58333333,desktop,Twice a week,35 - 44 years,One,India,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
768,1,3,3,3,Cooling ,Nothing,Nothing ,5,5,5,5,5,1,1,1,1,1,7,7,6,7,7,6898641,10-08-2020,09:25,10-08-2020,09:28,14.5,mobile,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
769,1,5,4,5,great to have cooling as well as keeping fresh,nothing,na,3,4,4,5,5,3,2,2,1,1,2,5,5,7,7,6898653,10-08-2020,09:25,10-08-2020,11:18,564.0833333,desktop,Never,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
770,1,4,4,5,The product seems very unique and hard working to keep us dry,Nothing as yet,Everything seems fine.,2,5,5,4,5,3,1,1,1,1,4,6,6,7,7,6920176,10-08-2020,09:25,10-08-2020,09:30,23.08333333,mobile,Twice a week,25 - 34 years,Two,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
771,1,3,3,2, Keep me feeling cool and fresh,The name,The name focus in individual use not one gender,3,4,4,4,4,3,1,1,1,1,3,5,5,5,6,5335905,10-08-2020,09:25,10-08-2020,10:58,507.6363636,desktop,Less often,35 - 44 years,One,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Normal sweater,It’s natural / contains natural ingredients
772,1,5,3,5,I live in a hot humid part of Australia and find that my deodorant has to be reapplied a lot so this would be more convenient and work better,There is nothing i dislike,There is nothing i can think of that i would change,3,3,4,5,5,3,3,1,1,1,1,4,5,7,7,5379220,10-08-2020,09:26,10-08-2020,09:36,54.25,desktop,Never,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
773,1,4,4,4,The idea of an extra cooling sensation would always be welcome..,n/a,N/A,4,4,4,4,4,2,4,1,5,5,5,6,6,6,6,5377433,10-08-2020,09:26,10-08-2020,09:31,29.27272727,desktop,3+ times a week,55 - 64 years,I don’t have any children,UK,Roll-on,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
774,1,5,5,5,I like it's good quality and good results,Nothing any ,No I am not any change,5,5,5,5,5,1,2,1,1,1,7,7,7,7,7,7555067,10-08-2020,09:26,10-08-2020,09:31,28.45454545,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
775,1,4,4,5,The whole concept ,None ,No,5,5,5,5,5,2,2,2,2,2,7,7,7,7,7,5378809,10-08-2020,09:26,10-08-2020,09:28,13.09090909,desktop,Twice a week,45 - 54 years,Two,UK,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,Has a fragrance I like
776,1,4,4,4,That it concentrates on the core of the problem.,N/A,To more detailed info,2,3,5,5,5,2,3,1,1,1,4,2,7,7,7,6923559,10-08-2020,09:26,10-08-2020,09:33,35.58333333,mobile,Few times a month,35 - 44 years,Two,South Africa,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It cares for my skin
777,1,5,5,5,ITS GOT EVERYTHING I LIKE ABOUT IT,NOTHING,NO,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5335673,10-08-2020,09:26,10-08-2020,09:31,24.83333333,desktop,Once a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
778,1,4,4,3,The cooling sensation from the product,N/a,N/a,4,5,5,4,5,2,1,1,1,1,5,7,6,7,6,5367329,10-08-2020,09:26,10-08-2020,09:32,27.66666667,desktop,Once a week,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It does not cause white marks / stains on skin or clothes
779,1,4,4,5,stays fresh all day,none,na,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,6905014,10-08-2020,09:27,10-08-2020,09:31,20.33333333,desktop,Less often,55 - 64 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against wetness
780,1,4,3,5,Anything that's helps with everyday sweat is a must.,None,No,3,4,5,5,5,1,1,1,1,1,7,7,7,7,7,6884769,10-08-2020,09:27,10-08-2020,09:30,14.83333333,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
781,1,5,3,5,the idea that it keeps you feeling cool and keeps sweat under control,nothing to dislike if it works,n/a,4,5,4,5,5,1,1,1,1,1,5,6,7,7,6,5365110,10-08-2020,09:27,10-08-2020,09:32,31.09090909,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against wetness
782,1,5,5,5,It reduces the amount of sweat and keeps refreshing all over the time,N/a,More examples or live test results could have been added,5,5,5,5,5,1,1,1,1,1,6,6,7,6,7,8589917,10-08-2020,09:27,10-08-2020,09:33,31.91666667,mobile,3+ times a week,25 - 34 years,Two,India,Pump spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
783,1,,,,,,,,,,,,,,,,,,,,,,7561502,10-08-2020,09:27,,,,desktop,3+ times a week,55 - 64 years,One,UK,Roll-on,No,I use it at least once a day,Male,Normal sweater,It cares for my skin
784,1,4,3,5,Sounds very unique and something I would try as it's something that happens regularly ,All sounds good,Maybe a all over body use,5,4,4,2,5,2,2,2,2,1,5,5,5,5,7,6899973,10-08-2020,09:27,10-08-2020,09:34,39.63636364,mobile,3+ times a week,35 - 44 years,Three,UK,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
785,1,5,5,4,it releases cooling ingredients and maintain the body temperature level and keep us fresh in any climatic conditions,it should be natural ingredients,have to mention the ingredients used for the products in detailed manner,5,5,5,5,5,4,4,2,2,1,7,7,7,7,7,7998265,10-08-2020,09:27,10-08-2020,09:44,84.5,desktop,3+ times a week,35 - 44 years,One,India,Pump spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
786,1,5,5,5,Keeps me cool and fresh on demand all day in my hot environment in South Africa,N/A,n/a,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7676099,10-08-2020,09:27,10-08-2020,09:34,37.75,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
787,1,4,3,4,that it responds to body temperature.,n/a,n/a,3,4,5,5,5,4,1,1,1,1,4,7,6,7,6,5368573,10-08-2020,09:27,10-08-2020,09:33,31.27272727,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
788,1,5,2,4,"I overheat or get too hot very easily, so something that cools would be great if it can take the edge off","Sounds a bit of a gimmick, like it will just be mint, eucalyptus or other similar things and chemicals that will provide a cooling sensation, but not do much otherwise",N/a,4,4,5,5,5,2,1,1,1,1,4,5,6,7,7,7671243,10-08-2020,09:27,10-08-2020,09:34,32.91666667,mobile,Few times a month,35 - 44 years,I don’t have any children,UK,Stick,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against odour
789,1,4,3,3,Keep sweat under control ,Not sure it would work with high lvl sweat,Na,5,4,3,5,5,1,2,1,1,1,7,5,7,7,7,7554755,10-08-2020,09:27,10-08-2020,09:32,24,desktop,Twice a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
790,1,5,5,5,It has cooling sensation that can be activated by your body temperature ,Nothing ,No,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8589594,10-08-2020,09:27,10-08-2020,09:33,28.58333333,mobile,Twice a week,35 - 44 years,Four or more,Philippines,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It cares for my skin
791,1,5,5,5,the product will help me in hot and humid climate,nothing,n/a,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7742274,10-08-2020,09:27,10-08-2020,09:31,20.25,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It cares for my skin
792,1,5,4,4,Its an innovative product that is not present on the market. I am interested to try it out,nothing specific,n/a,3,5,5,5,4,3,1,1,1,1,5,6,6,6,6,6899647,10-08-2020,09:27,10-08-2020,09:39,58.5,desktop,3+ times a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It prevents / controls against wetness
793,1,3,3,2,None,None ,None ,3,3,3,3,3,3,3,3,3,3,5,5,6,4,4,7618285,10-08-2020,09:27,10-08-2020,09:29,9.727272727,mobile,Few times a month,45 - 54 years,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Male,Light sweater,It cares for my skin
794,1,3,3,4,Interesting,Nothing,Na,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,7618423,10-08-2020,09:27,10-08-2020,09:31,17,mobile,Twice a week,35 - 44 years,Two,US,Gel,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
795,1,4,3,4,great product,noner,none,3,3,3,4,4,4,4,4,4,4,4,5,5,4,4,6915582,10-08-2020,09:27,10-08-2020,09:30,16.09090909,desktop,Few times a month,35 - 44 years,Two,US,Gel,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
796,1,5,3,4,"Like that ingredients are activated by body temperature so I don't have to do anything to get extra protection at the right time, so I stay fresh and cool",Hope it won't irritate my underarm skin and that it is not too expensive,Nothing at all it sounds great,4,4,4,5,5,2,1,1,1,1,4,7,7,7,7,5352753,10-08-2020,09:28,10-08-2020,09:32,22.90909091,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
797,1,5,4,4,"The best part of the product is on-demand cooling sensation that gets triggered by body temperature. This aspect is very appealing as it would meet an 'unaddressed-need' that the current range of products does not meet. Me and my wife have been discussing about our need for such a product that can control sweat and brings coolness in the current humid weather. So in our case, this product would be a definite hit. ",n/a,It would be great if a product picture and 'how-to-use' details can be shown. ,4,4,4,5,5,2,1,2,1,1,5,5,6,6,7,7742089,10-08-2020,09:28,10-08-2020,09:37,47.83333333,desktop,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against odour
798,1,4,4,3,"very handy to know that it activates , no need to worry about odours",n/a,n/a,3,4,5,5,5,3,1,1,2,1,4,7,7,7,7,6901660,10-08-2020,09:28,10-08-2020,09:40,67.45454545,desktop,Never,35 - 44 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Non-sweater,It prevents / controls against odour
799,1,3,3,1,Keeps you cool,On demand - sounds as if you have to activate it,NA,4,3,2,5,5,2,2,3,1,1,5,4,4,7,7,6881818,10-08-2020,09:28,10-08-2020,09:31,16.41666667,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
800,1,,,,,,,,,,,,,,,,,,,,,,7306948,10-08-2020,09:28,,,,mobile,Twice a week,35 - 44 years,Two,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
801,1,4,3,2,A cool sensation in hot climate is always welcome,n/a,n/a,4,4,4,5,5,2,1,1,1,1,3,2,2,1,1,7676384,10-08-2020,09:28,10-08-2020,09:52,130,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
802,2,,,,,,,,,,,,,,,,,,,,,,5337074,10-08-2020,09:28,10-08-2020,09:31,65,desktop,Less often,35 - 44 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
803,1,3,3,2,None,None,Maybe,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5383475,10-08-2020,09:29,10-08-2020,09:32,19.45454545,mobile,Less often,35 - 44 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
804,1,4,4,5,I like that it works when you need it most. ,N/a,N/a,4,4,4,5,5,2,2,1,1,1,5,5,5,6,7,7565220,10-08-2020,09:29,10-08-2020,09:35,33.45454545,mobile,3+ times a week,45 - 54 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
805,1,3,3,3,On-demand cooling,Nothing ,No,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5367571,10-08-2020,09:29,10-08-2020,09:30,7.916666667,mobile,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,Has a fragrance I like
806,1,4,3,3,Sounds unique,N/a,No,3,4,3,5,5,3,5,1,1,1,4,4,4,7,7,7676132,10-08-2020,09:29,10-08-2020,09:31,9.666666667,mobile,3+ times a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against wetness
807,1,4,4,4,This product releases cooling ingredients. ,Nothing as such.,N/A,4,5,5,5,5,2,1,1,1,1,6,7,7,7,7,7741813,10-08-2020,09:29,10-08-2020,09:37,39.66666667,desktop,3+ times a week,35 - 44 years,Two,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
808,1,5,5,5,"Sounds perfect, I’d love a cooling sensation on hot days.",Nothing to dislike ,I don’t think I’d change anything,4,5,4,5,5,2,1,1,1,1,6,7,6,7,7,6880507,10-08-2020,09:29,10-08-2020,09:35,34.81818182,mobile,Less often,35 - 44 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
809,1,4,4,3,On demand cooling ability of the product ,N/a,N/a,3,5,4,5,5,2,1,1,1,1,4,7,6,7,7,8000905,10-08-2020,09:29,10-08-2020,09:52,123.4545455,mobile,Twice a week,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
810,1,4,4,4,on demand,nothing,No,4,4,4,4,4,3,2,2,1,1,5,5,5,6,6,6914978,10-08-2020,09:29,10-08-2020,09:32,15.16666667,desktop,Twice a week,45 - 54 years,One,South Africa,Aerosol Spray,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
811,1,3,3,3,Gives detailed information,Nothing special,none,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,8640802,10-08-2020,09:29,10-08-2020,09:32,15.08333333,desktop,Twice a week,25 - 34 years,Two,Philippines,Pump spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
812,1,5,4,4,Cooling effect is activated by body temperature as needed.,Nothing to dislike,N/A,3,4,4,5,5,2,1,1,1,1,4,7,6,7,7,5330501,10-08-2020,09:30,10-08-2020,09:37,41.18181818,desktop,Never,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
813,1,5,5,5,the product can release a cool ingredients when the body temp in different climate. ,n/a,n/a,1,5,5,4,5,5,1,1,1,1,1,7,7,6,7,8606050,10-08-2020,09:30,10-08-2020,09:38,46.63636364,desktop,Twice a week,35 - 44 years,Two,Philippines,Roll-on,Yes,"I use it most days, but not every day",Male,Anxious sweater,It prevents / controls against wetness
814,1,4,4,4,Informative,Nothing,It's perfect,5,4,4,4,4,2,1,2,2,1,7,6,6,6,6,7741941,10-08-2020,09:30,10-08-2020,09:32,9.083333333,mobile,3+ times a week,25 - 34 years,Two,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It’s natural / contains natural ingredients
815,1,4,4,4,Feeling cool and fresh is a major plus.,n/a,n/a,4,4,4,4,4,2,1,1,1,1,5,6,6,6,6,5365960,10-08-2020,09:30,10-08-2020,09:33,17.5,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
816,1,4,4,3,Great features,Nothing yet,Na,2,3,4,2,5,4,5,5,4,5,7,6,5,6,6,8738513,10-08-2020,09:30,10-08-2020,09:32,10.25,mobile,Less often,18 - 24 years,I don’t have children under the age of 18,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
817,1,3,5,5,It takes care of the skin ,,,,,,,,,,,,,,,,,,5335700,10-08-2020,09:30,,,,mobile,3+ times a week,25 - 34 years,Two,South Africa,Lotion,Yes,I use it multiple times a day,Male,Heavy sweater,It doesn’t use a lot of packaging / packaging is recyclable
818,1,4,2,4,I think it would feel refreshing,I am not sure it would disguise the smell,n/a,4,5,5,5,5,2,1,1,1,1,5,7,6,7,7,6899419,10-08-2020,09:30,10-08-2020,09:32,9.916666667,desktop,3+ times a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
819,1,4,5,4,Works in any climate. Effective!,nothing ,no suggestion ,4,4,4,5,5,2,1,2,1,1,4,5,5,7,7,6898468,10-08-2020,09:30,10-08-2020,09:33,16.66666667,mobile,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
820,,,,,,,,,,,,,,,,,,,,,,,6912569,10-08-2020,09:30,,,,desktop,Never,55 - 64 years,I don’t have children under the age of 18,US,Stick,Yes,I use it multiple times a day,Female,Heavy sweater,It does not cause white marks / stains on skin or clothes
821,1,5,5,5,The cooling sensation ,N/a,N/a,3,5,5,5,5,3,1,1,1,1,1,6,5,7,7,5393841,10-08-2020,09:30,10-08-2020,09:43,64.33333333,mobile,Less often,45 - 54 years,Two,Australia,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
822,1,4,3,2,its new and claims to help stay fresh,n/a,n/a,4,4,4,4,4,1,1,1,1,1,5,5,5,5,5,7668587,10-08-2020,09:30,10-08-2020,09:45,71.91666667,desktop,Once a week,35 - 44 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
823,1,4,3,4,The product's ingredient which is activated by my body temperature to keep me feeling cool & fresh in any climate ...... Sounds interesting !!,n/a,I would like a suttle / gentle fragrance along with the spl ingredient to be released ...... Too add to the freshness feel .,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7742122,10-08-2020,09:31,10-08-2020,09:44,73.36363636,mobile,3+ times a week,45 - 54 years,Two,India,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
824,1,5,4,3,cooling effect,would like to know the price,is it a spray?,1,5,3,5,5,3,1,1,1,1,1,6,4,7,7,5337114,10-08-2020,09:31,11-08-2020,00:25,4470.583333,desktop,Never,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
825,1,5,4,5,Body temperature activates release of cooling ingredients to keep me feeling fresh,I dont know how much chemical is getting delivered to my body,we have to mention harmlessness of the chemicals,5,4,5,3,4,1,1,3,2,1,6,6,7,6,6,7719428,10-08-2020,09:31,10-08-2020,09:37,34.58333333,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,India,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
826,1,3,2,2,I am not sure that there is anything I like in particular,n/a,n/a,3,2,2,3,4,2,2,3,2,1,1,4,3,4,5,5372425,10-08-2020,09:31,10-08-2020,09:34,19.25,desktop,3+ times a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I only use it on specific occasions,Male,Anxious sweater,Has a fragrance I like
827,1,4,4,3,"The ""extra on-demand cooling sensation""",Not sure if it will irritate sensitive skin,"Inform consumer on whether or not it is suitable for sensitive skin. Also, what about the fragrance? Is there one?",1,4,4,4,4,5,2,2,1,1,1,4,5,6,7,8596619,10-08-2020,09:31,10-08-2020,09:35,22.91666667,desktop,3+ times a week,45 - 54 years,I don’t have any children,Australia,Roll-on,Yes,"I use it most days, but not every day",Female,Heavy sweater,It prevents / controls against odour
828,1,4,5,3,cooling sensation for hot and humid conditions,not sure how it looks or works.,n/a,3,5,4,4,5,2,1,1,1,1,5,6,7,6,6,5366599,10-08-2020,09:31,10-08-2020,09:42,57,desktop,Twice a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
829,1,5,5,4,Gud,No,No,5,4,4,4,4,4,4,4,4,4,6,6,6,6,6,7741762,10-08-2020,09:31,10-08-2020,09:34,16,mobile,3+ times a week,25 - 34 years,Two,India,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
830,1,5,5,5,Nrw,Nothing ,Nothing ,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5367861,10-08-2020,09:31,10-08-2020,09:33,11.09090909,mobile,Twice a week,45 - 54 years,One,UK,Roll-on,Yes,I use it multiple times a day,Male,Anxious sweater,Has a fragrance I like
831,1,3,3,2,Cooling with sweat protection,Nothing,Cooling sensation in addition to nice smell,2,4,4,4,4,3,1,1,1,1,4,5,6,6,6,7618907,10-08-2020,09:31,10-08-2020,09:41,51.58333333,mobile,Never,25 - 34 years,Two,India,Pump spray,Yes,"I use it most days, but not every day",Female,Anxious sweater,Has a fragrance I like
832,1,4,,,,,,,,,,,,,,,,,,,,,5332957,10-08-2020,09:31,,,,mobile,Few times a month,55 - 64 years,I don’t have children under the age of 18,UK,Other,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
833,1,4,3,3,Convenient on the go,Nothing ,,,,,,,,,,,,,,,,,6901295,10-08-2020,09:31,,,,desktop,3+ times a week,45 - 54 years,I don’t have any children,Australia,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
834,1,5,4,4,The product release cooling ingredients to keep your body cool,n/a,Yes I want different odours,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7618330,10-08-2020,09:32,10-08-2020,09:38,33.25,desktop,Twice a week,55 - 64 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
835,1,5,3,4,If it works it is a fantastic new idea and would help millions of people,Do not dislike but need evidence of it working,n/a,2,5,5,5,5,5,5,1,1,1,1,7,7,7,7,7676115,10-08-2020,09:32,10-08-2020,09:36,19.08333333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
836,1,5,4,5,Sounds a great product for this time of year when we have been having some hot weather,N/a,N/a,3,4,4,5,5,2,1,1,1,1,3,6,5,7,7,6879359,10-08-2020,09:32,10-08-2020,09:35,16,mobile,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
837,1,4,5,4,It's unique,Nothing,No,4,4,3,4,5,1,3,2,4,5,7,6,4,6,7,7761547,10-08-2020,09:32,10-08-2020,09:34,9.909090909,mobile,,18 - 24 years,,India,,,,Female,,
838,1,5,4,5,Different from others. especially cooling effect very helpful in summer,Can comment once I use it.,Nothing specific,5,4,5,4,5,1,1,1,1,1,6,6,7,6,7,7741761,10-08-2020,09:32,10-08-2020,09:48,85.45454545,desktop,3+ times a week,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
839,1,5,3,5,..,..,N/a,4,5,5,5,5,3,1,1,1,1,5,6,6,7,7,6899235,10-08-2020,09:32,10-08-2020,09:34,8.666666667,mobile,3+ times a week,25 - 34 years,I don’t have any children,UK,Stick,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
840,1,4,5,5,Looks like a very good product ,Nothing ,N/A,5,4,3,4,5,1,1,1,1,1,7,6,7,7,7,7719132,10-08-2020,09:32,10-08-2020,09:36,22.27272727,desktop,Never,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
841,1,1,3,5,Easy to use,Nothing,Nothing,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,8738752,10-08-2020,09:32,10-08-2020,09:34,9.833333333,mobile,Once a week,35 - 44 years,I don’t have children under the age of 18,Philippines,Cream,No,I only use it on specific occasions,Male,Normal sweater,It’s natural / contains natural ingredients
842,1,5,5,5,In humid city sweating and it’s smell gets me embarrassing so it’s good option for me.,On order I wanna every minutes should work,Pocket size pack I wanna ,5,5,5,5,5,2,1,1,1,2,7,7,6,7,6,7741786,10-08-2020,09:32,10-08-2020,09:38,26.16666667,desktop,3+ times a week,45 - 54 years,One,India,Pump spray,Yes,I use it multiple times a day,Male,Heavy sweater,It cares for my skin
843,1,4,4,4,It's cooling combos,Nothing,N/a,4,4,4,4,4,4,3,4,4,3,6,3,6,6,5,7589899,10-08-2020,09:33,10-08-2020,09:35,13,mobile,Twice a week,25 - 34 years,I don’t have any children,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
844,1,4,2,2,The cooling effect,n/a,n/a,1,4,5,5,5,4,1,1,1,1,3,5,5,6,7,6898797,10-08-2020,09:33,10-08-2020,09:39,28.16666667,mobile,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Pump spray,Yes,I use it at least once a day,Female,Light sweater,"It's free from (aluminium, chemical or fragrance)"
845,1,1,2,5,its good,its looklike hoax///,no,3,5,4,2,1,5,2,3,4,4,5,6,4,3,7,7719368,10-08-2020,09:33,10-08-2020,09:36,16.83333333,desktop,Never,45 - 54 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against wetness
846,1,5,5,5,The concept of cooling ingredient that will adjust to your body temperature,"the word ""on-demand"". It sounds like exaggeration",none.,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8660885,10-08-2020,09:33,10-08-2020,09:37,20.5,desktop,Twice a week,25 - 34 years,Two,Philippines,Roll-on,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against wetness
847,1,5,4,4,All,None ,N/a,4,5,5,4,4,1,1,1,1,1,6,7,7,6,6,5348222,10-08-2020,09:33,10-08-2020,09:41,36.91666667,mobile,Never,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
848,1,4,3,4,the cooling ,nothing without trying it,dk,4,4,4,4,4,3,3,3,3,3,4,4,4,4,4,7561488,10-08-2020,09:33,10-08-2020,09:38,23.25,desktop,Less often,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,No,I use it at least once a day,Female,Non-sweater,It cares for my skin
849,1,4,4,4,Its new in the market and very appealing,It's in form of ice,n/a,5,4,2,5,4,1,1,1,1,1,7,6,6,6,7,7618635,10-08-2020,09:34,10-08-2020,09:41,39.18181818,mobile,3+ times a week,25 - 34 years,One,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against odour
850,1,5,4,5,Keeps me refreshed all day long,nothing,no,2,5,5,5,5,1,1,1,1,1,5,6,7,7,7,5360607,10-08-2020,09:34,10-08-2020,09:38,24.63636364,desktop,Few times a month,35 - 44 years,Three,South Africa,Stick,Yes,I use it at least once a day,Male,Non-sweater,It prevents / controls against wetness
851,1,4,4,4,that it keeps you fresh whatever the temperature,"nothing stands out, would need to try it before commenting further",no,4,3,4,4,4,2,2,1,1,1,5,4,5,6,6,7294187,10-08-2020,09:34,10-08-2020,13:17,1116,mobile,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
852,1,4,5,1,It keeps sweat away,Nothing at all,n/a,4,4,4,4,4,1,1,1,1,1,7,7,7,7,7,7915885,10-08-2020,09:34,10-08-2020,09:43,46.75,desktop,3+ times a week,55 - 64 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Light sweater,It cares for my skin
853,1,4,3,3,cooling sensation,n/a,n/a,4,4,5,5,5,1,2,2,1,2,6,7,7,7,7,7742075,10-08-2020,09:34,13-08-2020,11:47,22263.16667,mobile,3+ times a week,25 - 34 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
854,1,4,3,4,Total 24/7 freshness,Nothing,No,2,4,2,5,5,2,1,2,1,1,4,6,5,7,7,7618434,10-08-2020,09:34,10-08-2020,09:38,16.16666667,mobile,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
855,1,4,2,2,Would solve a problem for me,What is an encap exactly?,Be clearer what an encap actually is?,4,4,4,5,5,2,2,2,1,1,5,5,5,7,7,8606723,10-08-2020,09:34,10-08-2020,09:41,31.33333333,mobile,3+ times a week,25 - 34 years,I don’t have any children,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
856,1,4,3,3,I like the idea they have come up with I just don't know how it would work. I would have to read up on it and see if It is believable or not,Not knowing if it is actually going to work the way it was advertised,I think I would have to put more information about the product on the ad so people can see for themselves what it is all about,1,4,4,4,3,4,1,1,1,1,1,5,6,7,7,5387665,10-08-2020,09:35,10-08-2020,09:42,36.16666667,desktop,3+ times a week,55 - 64 years,One,US,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
857,1,5,5,5,it will cool you down and keep you feeling fresh ,nothing,i wouldnt change it,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7553906,10-08-2020,09:35,10-08-2020,09:42,32.91666667,desktop,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It’s natural / contains natural ingredients
858,1,4,3,3,the cooling sensation,I would worry that it wouldn't always work,not sure,4,3,4,3,5,1,2,2,1,1,6,5,5,5,7,5345445,10-08-2020,09:35,10-08-2020,10:13,188.0833333,desktop,3+ times a week,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
859,1,5,5,5,It's appealing get cold sensation in hot weather but make sure does not harm skin,It's function,All good,4,4,4,5,4,1,1,1,1,1,7,7,7,7,7,7742071,10-08-2020,09:35,10-08-2020,09:40,23.41666667,mobile,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,Has a fragrance I like
860,1,5,4,5,It is very unique and very useful,Nothing so far,I would make it available in smaller packages or containers,5,5,5,5,5,1,2,2,1,1,6,5,7,7,7,5371661,10-08-2020,09:35,10-08-2020,09:39,21.09090909,desktop,3+ times a week,25 - 34 years,Three,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It cares for my skin
861,1,3,1,1,Is a deodorant ,Don’t believe the cooling part,N/a,1,3,3,5,5,5,3,3,1,1,1,1,4,7,7,6898788,10-08-2020,09:35,10-08-2020,09:38,15.41666667,desktop,Once a week,65 years +,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
862,1,5,4,4,It is unique & different. It will appeal to a lot of people,n/a,n/a,3,4,4,5,5,2,2,2,1,1,4,5,4,7,7,6886070,10-08-2020,09:35,10-08-2020,09:38,14.90909091,desktop,Twice a week,25 - 34 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
863,1,5,4,5,It senses the change in my body temperature then cools and activates the refreshing agents. ,N/a,The name,4,5,4,5,5,2,1,1,1,1,5,5,6,7,7,5335621,10-08-2020,09:35,10-08-2020,09:52,84.66666667,mobile,Less often,35 - 44 years,Two,South Africa,Gel,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
864,1,5,4,4,That is keep sweating under control,None,n/a,4,5,4,5,5,1,1,1,1,1,6,7,7,7,7,7554182,10-08-2020,09:35,10-08-2020,09:42,32.83333333,desktop,Never,45 - 54 years,One,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Heavy sweater,Has a fragrance I like
865,1,3,4,3,BETTERPROYECTION,N/A,NO,4,5,4,5,5,1,1,1,1,1,7,7,7,7,7,7617822,10-08-2020,09:35,10-08-2020,09:39,16.90909091,desktop,Twice a week,65 years +,I don’t have any children,UK,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
866,1,4,4,1,Like it very much,None at all,n/a,4,5,4,5,5,3,1,1,1,1,4,7,6,6,7,8661370,10-08-2020,09:36,10-08-2020,10:10,171.0833333,desktop,Never,45 - 54 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
867,1,5,4,5,"When I'm hot anything that makes me feel cooler - a draught of air, drink of cold water - is welcome. Particularly like the reference to commuting - you start your journey clean and get to what you need to do feeling unclean.",n/a,the ice cube phrase - makes me think of them melting and leaving a wet patch,4,4,4,5,5,2,2,2,1,1,4,5,5,6,7,7293921,10-08-2020,09:36,10-08-2020,09:42,30.66666667,desktop,Few times a month,55 - 64 years,I don’t have any children,UK,Soft solid (clinical),Yes,"I use it most days, but not every day",Female,Excessive sweater,It prevents / controls against odour
868,1,5,5,5,ICE cube encaps your deodorant extra on demand cooling sensation.its release cooling ingredients when activated by body temperature to keep you fresh no matter the climate it is.,only the little explanation or description,n/a,5,5,4,4,4,1,1,1,1,1,7,7,6,7,7,8587956,10-08-2020,09:36,10-08-2020,09:42,36.72727273,desktop,3+ times a week,25 - 34 years,Three,Philippines,Aerosol Spray,Yes,I use it multiple times a day,Male,Light sweater,It’s natural / contains natural ingredients
869,1,5,4,4,Cooling effect is a must in humid climate,Nothing,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8607299,10-08-2020,09:36,10-08-2020,09:38,11.58333333,desktop,3+ times a week,45 - 54 years,One,India,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
870,1,5,4,5,The cooling sensation,n/a,n/a,4,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7676291,10-08-2020,09:36,10-08-2020,09:41,24.09090909,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
871,1,5,4,4,It looks good if it works well it should sail well as long as it does the job it says,Nothing,No,4,4,5,5,5,1,1,1,1,1,6,7,6,7,7,5371774,10-08-2020,09:36,10-08-2020,09:41,20.75,mobile,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against wetness
872,1,5,4,4,I believe this product would be particularly useful in humid climates and of course in summer,n/a,n/a,3,4,4,5,5,2,1,1,1,1,5,5,5,6,6,5384641,10-08-2020,09:37,10-08-2020,09:51,73.25,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,"It's free from (aluminium, chemical or fragrance)"
873,1,5,5,5,Aa read icecube encaps do give a cooling sensation through out the day which seems to me awesome & I'm sure I'll go for it.,The fragrance hasn't been mentioned.,The fragrance must be made of spices & fully organic.,4,4,4,5,4,2,1,1,1,1,6,7,7,7,7,7742221,10-08-2020,09:37,10-08-2020,09:48,56.66666667,mobile,Twice a week,45 - 54 years,I don’t have children under the age of 18,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
874,1,5,5,5,Your video and family ??????????,Nothing,The next few months ????????,5,5,4,5,4,5,4,4,4,4,6,7,7,6,6,7835616,10-08-2020,09:37,10-08-2020,09:38,8.5,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
875,1,4,4,4,innovative.. and if this product really works.. then its good for all of us,none,"no,i would not change anything",4,4,4,4,4,3,3,1,1,1,6,5,6,6,6,8727676,10-08-2020,09:37,10-08-2020,09:42,28.25,mobile,Twice a week,45 - 54 years,One,Philippines,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against wetness
876,1,5,4,5,I like that ice cube encape gives on demand cooling sensations . The body releases cooling ingredients which keeps me fresh.,There is nothing to dislike. ,Nothing to change ,4,5,4,5,5,2,1,1,1,1,5,6,4,7,7,7590130,10-08-2020,09:37,10-08-2020,09:48,54.33333333,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,Has a fragrance I like
877,1,3,4,3,Good to have product that helps me keep refreshed in hot and humid conditions.There are very few deos which actually keep the cooling affect for a longer time than just having it.If this product does what it says than its quite appealing and worth buying.,Sometimes it is difficult to carry certain product hence a product that lasts for a longer duration is what i want.Since i a sweat a lot i wonder if this product will really work,I would rather want the product to be environment friendly ,4,4,5,5,5,2,2,2,2,2,5,7,7,7,7,7589826,10-08-2020,09:37,10-08-2020,09:45,41.63636364,desktop,3+ times a week,25 - 34 years,Two,India,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It does not cause white marks / stains on skin or clothes
878,1,1,2,1,Xnnd,Nsnd,Dnndjd,1,2,2,2,3,5,3,2,4,3,6,4,4,4,5,7619286,10-08-2020,09:37,10-08-2020,09:49,57.33333333,mobile,3+ times a week,18 - 24 years,I don’t have children under the age of 18,India,Stick,Yes,I use it multiple times a day,Female,Excessive sweater,It does not cause white marks / stains on skin or clothes
879,1,4,4,4,Something to cool down when you get hot and keeps you fresh,Nothing,N/a,1,4,4,4,4,4,2,1,1,1,4,6,6,6,7,5505104,10-08-2020,09:37,10-08-2020,09:43,27.91666667,mobile,Few times a month,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
880,1,2,2,1,unique,"sounds weird, messy, embarrassing to use in public",no,2,1,4,4,4,3,4,1,1,1,3,3,5,6,6,6917731,10-08-2020,09:38,10-08-2020,10:00,110.75,desktop,Once a week,25 - 34 years,I don’t have any children,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
881,1,3,3,3,So cooool,Nothing ,Nothing ,4,4,4,4,4,3,1,1,1,1,7,7,7,7,7,5367909,10-08-2020,09:38,10-08-2020,09:41,17.91666667,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
882,1,5,4,5,"Ice Cube Encaps providing an on-demand cooling sensation. Moreover, it automatically cools our body by activating by our body temperature.",n/a,Needs to mention what are the products using to cool down our body temperature and avoid excess heat. It should be natural and non-sensitive and non-allergic. The cost should be minimal as everyone can afford.,5,4,4,5,5,1,1,1,1,1,7,5,6,7,6,7741915,10-08-2020,09:38,10-08-2020,09:48,51.08333333,desktop,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
883,1,4,4,3,that if needed its gives that cooling feeling when it gets hot ,price with this doing what it does will come at a price,N/A,4,4,4,5,5,1,1,2,2,1,3,6,5,7,6,5365998,10-08-2020,09:38,10-08-2020,09:50,61.5,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
884,1,5,5,5,Seems to be a new concept,N/a,N/a,5,5,3,5,5,1,5,5,2,5,7,7,4,7,7,7553372,10-08-2020,09:38,10-08-2020,09:43,23.75,mobile,Twice a week,35 - 44 years,Two,India,Pump spray,Yes,I use it multiple times a day,Male,Anxious sweater,It cares for my skin
885,1,1,1,1,It is activated by your body temperature,I do not understand the word Encaps,I would change the name to something understandable,2,1,4,4,4,3,3,3,1,1,4,3,4,5,5,7553593,10-08-2020,09:38,10-08-2020,09:46,37.58333333,desktop,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
886,,,,,,,,,,,,,,,,,,,,,,,8664302,10-08-2020,09:39,,,,mobile,Few times a month,35 - 44 years,One,Philippines,Lotion,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
887,1,5,4,5,this is relevant to me at the moment in the hot weather. i think it is a unique idea that is not on the market at the moment,n/a,n/a,5,4,4,5,5,1,2,2,1,1,6,5,5,7,7,6901414,10-08-2020,09:39,10-08-2020,09:43,19.66666667,desktop,Twice a week,25 - 34 years,Two,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against wetness
888,1,4,3,4,it's an interesting idea and also reassuring to think that if you suddenly get hot it will activate,I need to know more about its ingredients,more information about ingredients,2,3,4,4,4,3,1,2,1,1,3,4,6,6,7,5380843,10-08-2020,09:39,10-08-2020,09:42,18.91666667,desktop,Twice a week,45 - 54 years,One,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
889,1,4,2,4,,,,,,,,,,,,,,,,,,,7617973,10-08-2020,09:39,,,,mobile,Twice a week,25 - 34 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
890,1,,,,,,,,,,,,,,,,,,,,,,5437194,10-08-2020,09:39,,,,mobile,Less often,25 - 34 years,I don’t have any children,US,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
891,1,3,3,1,"I personally don’t commute or sweat that much, but may benefit others",Not relevant to me,Na,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5340350,10-08-2020,09:40,10-08-2020,09:43,18.63636364,mobile,3+ times a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
892,1,5,4,4,it will keep me feeling fresh and worry free from excessive sweating,would want to know what are the cooling ingredients used,none at all,3,5,4,5,4,3,1,2,1,1,4,7,6,7,6,7676146,10-08-2020,09:40,10-08-2020,09:48,43.33333333,desktop,3+ times a week,25 - 34 years,One,UK,Stick,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
893,1,5,5,5,To be sweat-free and to smell nice all day long.,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,5346763,10-08-2020,09:40,10-08-2020,09:46,33.63636364,desktop,Never,55 - 64 years,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It cares for my skin
894,1,5,4,5,That it cools you when you spray the product its a great idea. ,Nothing I love it. ,Nothing it's a great product ,5,4,5,5,5,1,1,1,1,1,7,7,7,7,7,5334702,10-08-2020,09:40,10-08-2020,09:45,21,mobile,3+ times a week,35 - 44 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
895,1,5,5,5,"Cooling sensation, easy to use, innovative product ",N/a,N/a,4,4,4,5,5,,,,,,,,,,,5369179,10-08-2020,09:41,,,,mobile,Twice a week,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
896,1,3,4,1,that it offers protection against sweat and cool and fresh at the same time,n/a,n/a,2,3,4,5,5,1,3,3,1,5,4,4,5,6,7,5435197,10-08-2020,09:41,10-08-2020,09:48,34.66666667,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
897,1,,,,,,,,,,,,,,,,,,,,,,5336093,10-08-2020,09:41,,,,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
898,1,5,3,5,cooling sensation,n/a,n/a,4,5,4,5,5,1,1,1,1,1,7,7,6,7,7,8606603,10-08-2020,09:41,10-08-2020,10:03,110.5,desktop,Once a week,35 - 44 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
899,1,4,5,4,suitable for humid weather and hot seasons as it cools our body effectively,n/a,n/a,5,5,4,5,4,1,1,1,1,1,7,6,5,6,7,8604828,10-08-2020,09:41,10-08-2020,09:46,22.83333333,desktop,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
900,1,5,4,5,The ability to unable us to sweat and makes us feel cool even in hot or humid environment... ,N/a,Maybe you can add how it is made up of like if it is made from natural ingredients to much inform the user beside the advantages of using it still it is harmful or no bad side effects. ,4,4,4,5,4,2,1,1,1,1,5,6,6,7,7,8664609,10-08-2020,09:42,10-08-2020,09:54,60,mobile,3+ times a week,35 - 44 years,Two,Philippines,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,Has a fragrance I like
901,1,4,4,4,"I like the idea it works in any situation, any climate",n/a,n/a,3,4,4,5,5,2,1,1,1,1,4,7,7,7,7,7617978,10-08-2020,09:42,10-08-2020,09:51,51.90909091,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,"I use it most days, but not every day",Male,Normal sweater,It prevents / controls against odour
902,1,5,4,4,Anything that keeps me from getting hot and sticky is a good thing,Just wondering whether it actually works ,No,3,4,4,5,4,2,1,2,1,1,4,6,6,5,5,6896278,10-08-2020,09:42,10-08-2020,09:46,21.25,mobile,3+ times a week,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
903,1,5,4,5,Keeping me fresh no matter what the weather is.,none,n/a,1,4,4,4,4,4,1,1,1,1,3,5,6,7,5,8597105,10-08-2020,09:42,10-08-2020,09:51,46.75,desktop,3+ times a week,45 - 54 years,Two,Philippines,I don't use any,No,I rarely / never use deodorant,Female,Normal sweater,I don't use any
904,,,,,,,,,,,,,,,,,,,,,,,8636570,10-08-2020,09:42,,,,desktop,3+ times a week,35 - 44 years,One,Philippines,Roll-on,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against odour
905,,,,,,,,,,,,,,,,,,,,,,,6901464,10-08-2020,09:42,,,,desktop,Twice a week,35 - 44 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
906,1,5,5,5,The fact that they've came out with a deodorant that works with the temperature of your Body to keep it cool all day,Nothing it sounds great,N/A,4,4,4,4,4,1,1,1,1,1,7,7,7,7,7,6969560,10-08-2020,09:42,10-08-2020,09:51,44,desktop,3+ times a week,55 - 64 years,One,US,Soft solid (clinical),Yes,I use it at least once a day,Male,Heavy sweater,It doesn’t use a lot of packaging / packaging is recyclable
907,,,,,,,,,,,,,,,,,,,,,,,8641457,10-08-2020,09:42,,,,mobile,Twice a week,35 - 44 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
908,1,5,4,4,that it only activates when it is needed,n/a,n/a,3,4,5,5,5,1,1,1,1,1,4,6,6,7,7,5334825,10-08-2020,09:43,10-08-2020,09:46,16.72727273,desktop,Less often,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against wetness
909,1,5,4,5,The on demand cooling,N/a,N/a,5,5,5,4,4,2,1,1,1,1,6,7,7,7,7,5335717,10-08-2020,09:43,10-08-2020,09:47,21.72727273,mobile,Once a week,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Heavy sweater,It’s natural / contains natural ingredients
910,1,3,3,2,"not too sure, personaly i wouldnt use it.","cant say i like it ,full stop. ",N\A,3,2,4,3,3,3,3,3,3,3,4,5,5,5,5,5501898,10-08-2020,09:43,10-08-2020,09:52,43.25,desktop,Less often,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
911,1,5,3,5,ver promising. being in a humid country this will be great for us.,need to try the product to answer this question,need to try this product to have an answer,2,4,2,5,5,2,2,2,1,1,4,6,5,7,7,8660938,10-08-2020,09:43,10-08-2020,09:51,44.36363636,mobile,3+ times a week,35 - 44 years,Two,Philippines,Lotion,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
912,1,4,2,2,not sure,nothing if it would work,nothing,3,3,4,5,5,4,2,2,1,1,1,1,4,7,7,6960614,10-08-2020,09:43,10-08-2020,09:47,18.75,desktop,Never,65 years +,I don’t have children under the age of 18,US,Roll-on,Yes,"I use it most days, but not every day",Female,Light sweater,It prevents / controls against odour
913,1,5,5,5,"I liked the idea of on-demand coolong sensation, wherein this product releases cooling ingredients when activated by the body temperature.","To be honest, there is nothing that I disliked.","Not really, I would not change anything.",1,5,4,5,5,4,1,1,1,1,4,7,7,7,7,8607140,10-08-2020,09:43,10-08-2020,09:49,29.5,mobile,,,,,,,,,,
914,1,5,4,3,Long lasting cooling ,Nothing so far,No,5,5,4,4,5,1,1,1,1,1,7,7,7,6,6,7554130,10-08-2020,09:44,10-08-2020,09:48,19.75,desktop,Less often,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,"It's free from (aluminium, chemical or fragrance)"
915,1,5,4,5,if it claims to do what it says then anything is more than welcome to keep me feeling cooling and fresher for longer,nothing so far as I`ve not tried it but often claims like this are too good to be true and i`m sure it would also depend on the indivual person as well,n/a,3,5,5,5,5,3,1,1,1,1,4,7,7,7,7,7676381,10-08-2020,09:44,10-08-2020,09:47,17.27272727,desktop,Twice a week,45 - 54 years,Two,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
916,1,5,5,5,Keeps sweat under control and keeps me feeling cool and fresh,n/a,n/a,5,5,5,5,5,1,1,1,1,1,6,7,7,7,7,7554723,10-08-2020,09:44,10-08-2020,09:49,25.08333333,desktop,3+ times a week,35 - 44 years,One,India,Stick,Yes,I use it multiple times a day,Male,Light sweater,It prevents / controls against odour
917,1,4,4,4,It makes cooler,Nothing,Nothing,4,4,4,5,4,1,1,1,1,1,6,6,6,6,6,7619256,10-08-2020,09:44,10-08-2020,09:48,21.16666667,desktop,Twice a week,18 - 24 years,I don’t have any children,India,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It cares for my skin
918,1,5,5,5,That it will make you feel kool no matter what you are doing. ,None,No,4,4,2,5,5,2,1,1,1,1,4,7,5,7,7,7618044,10-08-2020,09:44,10-08-2020,09:50,29.83333333,mobile,Less often,55 - 64 years,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
919,1,5,4,5,Most deodorants work for sweating but none have cooling ingredients ,Nothing ,N/a,4,4,4,4,4,2,1,1,1,1,5,2,2,1,1,6901016,10-08-2020,09:44,10-08-2020,09:48,19.91666667,mobile,Less often,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against wetness
920,1,5,3,4,It help to reduce sweat ,It's hard to found ,No,,,,,,,,,,,,,,,,7619203,10-08-2020,09:44,,,,mobile,3+ times a week,25 - 34 years,One,South Africa,Aerosol Spray,No,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
921,1,4,4,4,The on-demand cooling sensation.,Nothing to dislike.,n/a,1,4,5,5,5,4,1,1,1,1,2,6,7,7,7,6908005,10-08-2020,09:44,10-08-2020,09:51,30.83333333,mobile,3+ times a week,35 - 44 years,I don’t have children under the age of 18,US,Gel,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against odour
922,1,5,4,5,That it would keep me cool;,Nothing,n/a,1,5,5,4,5,3,1,1,1,1,3,7,6,6,6,7676417,10-08-2020,09:45,10-08-2020,09:48,15.66666667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
923,,,,,,,,,,,,,,,,,,,,,,,5388342,10-08-2020,09:45,,,,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,"I use it most days, but not every day",Female,Non-sweater,It cares for my skin
924,1,4,4,4,It will benefit in summers.,Nothing,Nothing,3,4,4,4,5,3,1,1,1,1,5,6,7,7,7,7561665,10-08-2020,09:45,10-08-2020,09:50,23.25,mobile,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Anxious sweater,It prevents / controls against odour
925,1,5,5,5,Day to day usage during todays temperatures can bring more confidence and less sweat stained clothes,N/a,n/a,4,5,5,5,4,2,1,1,1,1,6,6,6,7,7,6918369,10-08-2020,09:46,10-08-2020,09:53,37,mobile,3+ times a week,25 - 34 years,I don’t have any children,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
926,1,5,5,5,As I love ice and how it cools me down so it's quite handy really,Nothing,No,5,5,4,5,5,5,5,5,5,5,6,6,7,6,6,5372354,10-08-2020,09:47,10-08-2020,09:51,24.81818182,mobile,3+ times a week,35 - 44 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It does not cause white marks / stains on skin or clothes
927,,,,,,,,,,,,,,,,,,,,,,,6906251,10-08-2020,09:47,,,,mobile,Twice a week,25 - 34 years,Four or more,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It cares for my skin
928,1,4,3,3,That it adjusts to your body temperature and has the potential to act before you get hot and sweaty ,n/a,n/a,2,4,4,5,3,2,1,1,1,1,2,6,5,7,7,6898452,10-08-2020,09:48,10-08-2020,10:04,84.08333333,desktop,3+ times a week,25 - 34 years,One,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
929,1,4,3,3,It would be helpful on hot days,Nothing,No,4,4,4,5,5,3,2,1,1,3,4,6,5,7,7,7671276,10-08-2020,09:48,10-08-2020,09:51,12.33333333,mobile,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Normal sweater,It cares for my skin
930,1,4,4,4,"Cooling ingredients, boost to deodorant ",Not sure what an 'Encap' is which affects the apoeal,N/A,4,5,4,4,5,2,1,1,1,1,4,5,5,6,6,6899641,10-08-2020,09:48,10-08-2020,09:52,20,mobile,Less often,35 - 44 years,Three,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Excessive sweater,It prevents / controls against odour
931,1,4,2,2,Refreshing feel in the heat,How much the product will live to it’s promises,N/a,5,4,4,4,5,1,1,1,1,1,7,6,5,6,7,5333090,10-08-2020,09:49,10-08-2020,09:57,39.75,mobile,Never,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
932,1,5,5,5,The concept is very unique.,n/a,n/a,4,4,4,4,4,2,1,1,1,1,7,7,7,7,7,7742135,10-08-2020,09:49,10-08-2020,09:54,26.75,mobile,3+ times a week,45 - 54 years,I don’t have any children,India,Pump spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
933,1,5,4,5,Cooling ingredients activated by body temperature,n/a,Provide some information about environmental impacts of the product,5,5,5,5,5,2,1,1,1,2,6,7,7,7,6,7553932,10-08-2020,09:49,10-08-2020,09:54,24,desktop,Never,35 - 44 years,Two,India,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Light sweater,It’s natural / contains natural ingredients
934,1,4,2,4,It can keep me cool in the summer heat,No sure how this product will work and how natural it will be,n/a,5,4,4,5,5,1,1,1,1,1,6,6,5,6,5,7668579,10-08-2020,09:49,10-08-2020,09:59,49.16666667,desktop,Once a week,45 - 54 years,Two,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
935,1,1,1,1,"Nothing to like, or believe, about this.","It is silly. It reminds me of the trouble Nurofen got into by claiming their headaches targeted certain areas of pain! Expecting something to have a ""brain"" to decide where and when it attacks/activates is ridiculous!",I would scrap the idea completely!,1,1,1,1,3,5,5,5,5,3,4,4,4,5,5,5432737,10-08-2020,09:49,10-08-2020,09:55,31.09090909,desktop,Few times a month,55 - 64 years,I don’t have children under the age of 18,Australia,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
936,1,4,4,4,"I like the idea of the cooling sensation which is much needed on a hot humid day, I like the feeling of freshness after ","Without seeing the product I think the cooking sensation may feel strange , will the product look like a cube block to move about may be hard to hold ",Add a picture of what the product would look like so I have a better idea Also add what scent it will be as I’m guessing a minty menthol type scent which if it is a fresh uplifting scent would be nice ,3,4,3,5,5,3,2,3,1,1,3,4,4,7,7,6898868,10-08-2020,09:49,10-08-2020,10:07,87.75,mobile,Twice a week,35 - 44 years,One,UK,Roll-on,Yes,I use it multiple times a day,Female,Light sweater,It prevents / controls against odour
937,1,5,2,4,The fact that it’s meant to cool you down when your body temp goes up. ,Just sounds so unbelievable. I would want more information of how it works and some research of it actually being tested on people and their feedback. Honest feedback. ,N/a,4,4,5,5,5,2,1,1,1,1,4,6,6,7,7,6891700,10-08-2020,09:49,10-08-2020,09:53,21.72727273,mobile,3+ times a week,35 - 44 years,One,UK,Stick,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against odour
938,1,4,4,5,that it adjusts to the conditions to release more deoderant,n/a,n/a,3,4,4,5,5,2,1,2,1,1,3,5,5,7,7,5374224,10-08-2020,09:50,10-08-2020,09:53,17.33333333,desktop,Less often,45 - 54 years,One,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
939,1,2,2,1,Nothing,"Sounds like a gimmick, I'd have no use for it",N/a,3,4,4,5,5,3,2,3,1,1,4,5,3,6,6,6898620,10-08-2020,09:50,10-08-2020,09:53,17.91666667,mobile,Never,45 - 54 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
940,1,3,3,3,Nothing ,Nothing ,N/a,3,3,3,2,3,3,3,3,3,3,4,4,4,4,4,5415760,10-08-2020,09:50,10-08-2020,09:53,14.75,mobile,Once a week,35 - 44 years,Three,US,Soft solid (clinical),Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
941,1,3,3,2,Innovative Idea,n/a,n/a,4,4,4,4,4,1,1,1,1,1,6,5,6,6,6,6915167,10-08-2020,09:50,10-08-2020,10:01,56.83333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,South Africa,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
942,1,5,5,5,I like the on-demand cooling sensation ingredient of the product which is activated by the body temperature to keep it cool no matter the climate is while traveling.,n/a,n/a,4,5,5,5,5,2,1,1,1,1,5,7,7,7,7,8617329,10-08-2020,09:50,10-08-2020,10:00,52.63636364,desktop,Few times a month,45 - 54 years,One,Philippines,Roll-on,Yes,"I use it most days, but not every day",Female,Normal sweater,It’s natural / contains natural ingredients
943,1,4,4,3,I don't have this problem but have friends who would find it a great product.,Nothin,If its as good as it reads would be a best seller,3,4,4,4,3,4,1,1,1,1,3,7,7,7,6,6949809,10-08-2020,09:50,10-08-2020,09:55,23.91666667,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Light sweater,"It's free from (aluminium, chemical or fragrance)"
944,1,5,5,4,There was a problem and a solution has been generated that is self controlled by body temperature so there is no need to activate by any other means it becomes automatic and provides the outcome to the provide the feeling of staying cool and fresh whilst going from A to B,n/a,n/a,4,5,5,5,5,1,1,1,1,1,7,7,7,7,7,6910303,10-08-2020,09:51,10-08-2020,10:30,196.9166667,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,Australia,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
945,1,3,3,3,New idea,Nothing ,n/a,3,3,3,4,4,3,2,3,2,2,3,4,4,5,5,7670877,10-08-2020,09:51,10-08-2020,09:54,15.83333333,desktop,Twice a week,35 - 44 years,Two,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
946,1,4,3,3,"I sweat easily, just doing everyday activities",Doubts about its effectiveness,n/a,4,4,5,5,5,2,3,1,1,1,5,6,6,6,6,6946136,10-08-2020,09:51,10-08-2020,11:32,502.0833333,desktop,Less often,35 - 44 years,Two,US,Stick,Yes,I use it multiple times a day,Female,Normal sweater,It prevents / controls against odour
947,1,5,5,5,very exciting,none,none,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,5367002,10-08-2020,09:52,10-08-2020,09:54,10.66666667,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against wetness
948,1,4,4,4,its quite good products is okay,nothing i dislike,n/a,4,4,4,4,4,4,5,2,1,1,5,6,5,6,7,8595795,10-08-2020,09:52,10-08-2020,09:57,24.5,mobile,3+ times a week,45 - 54 years,Two,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
949,1,4,4,3,Provides enhanced freshness protection at a time when it is most likely to be required.,n/a,n/a,4,3,4,5,5,2,2,2,1,1,4,5,6,6,7,5367896,10-08-2020,09:52,10-08-2020,10:00,41.41666667,desktop,3+ times a week,55 - 64 years,I don’t have any children,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
950,1,4,4,3,All of it,Nothing,N/A,3,4,4,4,4,2,1,1,1,1,4,6,6,6,6,5337192,10-08-2020,09:52,10-08-2020,09:56,18.33333333,desktop,Once a week,65 years +,I don’t have children under the age of 18,Australia,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,"It's free from (aluminium, chemical or fragrance)"
951,1,5,3,5,That it can help with sweating ,N/a,N/a,4,4,4,4,4,1,1,1,1,1,5,6,7,6,7,6899282,10-08-2020,09:52,10-08-2020,10:02,46.33333333,mobile,Less often,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
952,1,3,3,3,nothing,seems strange,n/a,3,2,3,4,4,3,4,3,1,1,4,1,4,6,6,6893245,10-08-2020,09:52,10-08-2020,15:53,1801.5,desktop,3+ times a week,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Heavy sweater,It prevents / controls against wetness
953,1,5,4,5,"I like the idea of the on demand cooling sensation, it’ll make me feel fresher for longer ",N/A,N/A,3,4,4,4,5,3,1,1,1,1,4,6,6,6,6,6898743,10-08-2020,09:53,10-08-2020,10:02,49.27272727,mobile,Few times a month,25 - 34 years,One,UK,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,It prevents / controls against odour
954,1,2,2,2,it keeps you fresh,seems weird to me,not sure,4,4,4,4,5,2,1,1,1,2,6,7,6,6,7,5349924,10-08-2020,09:53,10-08-2020,09:56,16.83333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
955,1,4,3,3,Sounds like something that would come in handy when the weather is extremely hot and I need to cool down,Not sure if the product will be suitable for my skin it may cause burns or irritations or have a smell or leave a residue,Can't say as I've never seen or used this,4,4,5,4,5,2,1,1,1,1,4,7,7,6,6,6923533,10-08-2020,09:53,10-08-2020,09:57,22.18181818,mobile,3+ times a week,35 - 44 years,Three,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
956,1,5,4,5,It is automatically activated by our body temperature and it will help us remain cool and relaxed. I stay in hot and humid climate zone so it will be useful for me. ,Nothing so far.,Not now .may be after I start using it.,5,5,4,5,5,2,1,1,1,1,5,7,7,7,7,7681922,10-08-2020,09:53,10-08-2020,10:03,48,mobile,Twice a week,25 - 34 years,One,India,Pump spray,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
957,1,3,4,3,It's uniqueness ,Nothing ,N/A,2,3,4,3,4,3,3,2,1,1,5,5,5,6,6,7975717,10-08-2020,09:53,10-08-2020,10:03,48.16666667,mobile,Less often,65 years +,I don’t have children under the age of 18,Australia,I don't use any,No,I rarely / never use deodorant,Male,Normal sweater,I don't use any
958,1,5,4,5,It seems unique and new idea ,worried abot the chemicals that is used to create cooling sensation. If it is 100% natural then no worries,N/A,2,4,2,5,5,2,1,2,1,1,3,5,4,7,7,7764091,10-08-2020,09:53,10-08-2020,10:03,45.66666667,mobile,3+ times a week,35 - 44 years,One,India,Aerosol Spray,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
959,1,4,5,3,Its natural and the way it releases cooling ingredients to keep one fresh.,na,na,4,5,5,4,5,3,1,1,2,2,4,7,5,6,6,6885460,10-08-2020,09:54,10-08-2020,10:04,58.54545455,desktop,Less often,45 - 54 years,I don’t have children under the age of 18,UK,I don't use any,No,I rarely / never use deodorant,Female,Anxious sweater,
960,1,4,3,2,Responsive when environment is hotter,The approach is a bit naff. I'd rather it saying it has the ability to work even under the most challenging conditions,See prior answer. The whole approach to the advert,4,4,3,4,5,4,3,4,5,5,6,5,4,7,7,7317519,10-08-2020,09:54,10-08-2020,09:59,26.08333333,mobile,Twice a week,45 - 54 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
961,1,5,3,4,It has an appealing benefit if it works effectively,nothing,not that I can think of,4,5,4,5,5,4,1,1,1,1,5,6,6,6,6,5341290,10-08-2020,09:55,10-08-2020,09:58,15.63636364,desktop,3+ times a week,35 - 44 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Heavy sweater,It prevents / controls against odour
962,1,5,2,3,Keeps your sweat under control and cools you at the same time is a win-win.,Not enough info on how the product works or what it looks like,N/a - not enough info,4,4,4,5,5,2,1,1,1,1,5,6,5,7,7,6898840,10-08-2020,09:55,10-08-2020,10:08,62.33333333,mobile,Twice a week,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
963,1,5,4,4,I am the person who deal with lot of heat and I just can't tolerate heat not a single bit so it there's a product who can give us cooling effect I will freaking buy a whole bunch and I like that they are thinking about this product it will help many people.,Nothing,No they are already giving every thought in this product.,4,5,5,5,5,2,1,1,1,1,4,6,6,7,7,7553813,10-08-2020,09:55,10-08-2020,10:02,37.90909091,mobile,3+ times a week,18 - 24 years,I don’t have children under the age of 18,India,Pump spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
964,1,3,4,5,Its design,nothing,nothing,3,3,3,3,3,4,5,5,4,4,5,5,5,4,5,7764087,10-08-2020,09:55,10-08-2020,09:58,14.33333333,desktop,Less often,35 - 44 years,I don’t have children under the age of 18,India,Pump spray,No,I use it at least once a day,Male,Anxious sweater,It cares for my skin
965,1,4,4,5,all,na,no,5,4,5,4,5,5,4,5,4,4,6,7,7,6,7,7719266,10-08-2020,09:56,10-08-2020,10:02,31.08333333,desktop,Twice a week,25 - 34 years,One,India,Gel,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
966,1,2,2,1,Not a lot. I don't want to be in a hot and sweaty situation,N/a,N/a,1,4,5,4,4,2,2,1,1,1,4,6,6,6,7,5333201,10-08-2020,09:56,10-08-2020,10:01,26.91666667,mobile,Less often,65 years +,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Light sweater,It prevents / controls against odour
967,1,4,3,4,Interesting. :),n/a,please add fragrance.,4,4,5,4,4,5,4,4,3,4,5,4,6,6,5,8735929,10-08-2020,09:56,10-08-2020,10:00,22.08333333,desktop,Twice a week,25 - 34 years,One,Philippines,Roll-on,Yes,I use it at least once a day,Male,Heavy sweater,It cares for my skin
968,,,,,,,,,,,,,,,,,,,,,,,7763387,10-08-2020,09:56,,,,desktop,Few times a month,45 - 54 years,One,India,I don't use any,No,I rarely / never use deodorant,Male,Light sweater,I don't use any
969,1,5,5,5,I live in hot region where summer stays longer this kind of products I always look for,Nothing,None,4,5,4,5,5,1,1,1,1,1,6,7,6,6,7,7670972,10-08-2020,09:56,10-08-2020,09:59,14,mobile,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against odour
970,1,4,4,4,It's a quite amazing and interesting product which has designed to gives relief from sweat and humidity.,I have not been tried it till now so can't give any conclusion.,None,3,4,5,5,4,1,1,1,1,1,7,6,6,6,7,7618835,10-08-2020,09:56,10-08-2020,10:02,28.25,mobile,3+ times a week,25 - 34 years,One,India,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It cares for my skin
971,1,5,4,1,That it will keep me cool and fresh throughout the day and prevent me from sweating.,There's nothing I dislike about this product.,I would add a nice fragrance to the product.,4,5,5,5,5,1,1,1,1,1,5,7,7,7,7,6917962,10-08-2020,09:56,10-08-2020,10:07,58.63636364,mobile,Twice a week,45 - 54 years,One,South Africa,Roll-on,No,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
972,1,4,4,4,Its an innovative product,There is nothing,n/a,5,4,4,5,3,4,5,5,3,4,6,5,7,6,6,5378018,10-08-2020,09:56,10-08-2020,10:04,37.66666667,desktop,3+ times a week,25 - 34 years,Two,US,Roll-on,Yes,I use it at least once a day,Female,Anxious sweater,Has a fragrance I like
973,1,3,3,3,Keeping me cool,n/a,n/a,3,3,3,4,4,3,3,3,1,1,3,5,4,6,6,6923601,10-08-2020,09:57,10-08-2020,10:04,36.5,mobile,Never,35 - 44 years,I don’t have any children,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
974,1,5,4,4,Ok I do believe that this product could actually be possible because there are products out there tgattdmmt have a cooling effect already and I would love to have a deodorant that had that effect when activated by your bodys sweat I would buy it for sure you could be smellin good and stay cooler at lie same time very awesome,Just reading the conversation above I dont see that there is anything that I dont like about the product I cant wait to see if something like this were to come out and be on the shelves of stores,The only thing that maybe I would change is also make a body spray as well that would have the same cooling effect that would be awesome ,5,5,5,5,5,1,1,1,1,1,5,7,7,7,7,7639494,10-08-2020,09:57,10-08-2020,10:15,89.75,mobile,Few times a month,45 - 54 years,One,US,Stick,Yes,I use it at least once a day,Male,Light sweater,It prevents / controls against odour
975,1,5,5,5,Highly recommended,Great value,Best one,4,5,5,5,4,4,5,4,5,5,6,7,6,7,7,7671038,10-08-2020,09:57,,,,desktop,Twice a week,25 - 34 years,One,India,Pump spray,Yes,I use it multiple times a day,Female,Excessive sweater,It’s natural / contains natural ingredients
976,1,4,3,3,It seems like a very good idea but I would worry that it wouldn’t actually work but I would try it out ,I don’t dislike anything about the idea but I worry whether it would work ,Nothing ,3,4,4,5,5,3,2,1,1,1,3,6,6,7,7,5380854,10-08-2020,09:57,10-08-2020,10:03,27.33333333,mobile,Few times a month,45 - 54 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Male,Anxious sweater,It prevents / controls against odour
977,1,5,4,4,I like the idea of feeling something cool me when I'm getting hot and sweaty and the fact that I wouldn't have to put on something it would automatically do it for me.,N/a,N/a,3,5,5,5,5,3,1,1,1,1,4,6,7,7,7,7618461,10-08-2020,09:58,10-08-2020,10:07,46,mobile,Twice a week,35 - 44 years,One,South Africa,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
978,1,5,5,5,exciting,none,none,5,5,5,5,5,5,5,5,5,5,7,7,7,7,7,6900397,10-08-2020,09:59,10-08-2020,10:01,8.833333333,desktop,3+ times a week,55 - 64 years,I don’t have children under the age of 18,UK,Stick,Yes,I use it at least once a day,Male,Normal sweater,It prevents / controls against odour
979,1,5,5,5,It is very crucial for those like me who need to travel amid a humid climate in the city. Sweating is a huge problem and this product seems promising in this respect.,N/A,N/A,2,5,3,5,5,3,4,2,1,1,7,4,5,7,7,7671039,10-08-2020,09:59,10-08-2020,10:05,30.16666667,mobile,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
980,1,5,5,5,Seems unique and different,Nothing,N/a,5,5,5,4,4,4,4,4,4,5,6,6,6,7,6,7015006,10-08-2020,09:59,10-08-2020,10:05,32.25,mobile,3+ times a week,45 - 54 years,Three,US,Cream,Yes,I use it multiple times a day,Male,Normal sweater,Has a fragrance I like
981,1,4,4,5,The cooling sensation.,n/a,n/a,4,4,4,5,5,1,2,3,1,1,3,2,5,2,7,8667132,10-08-2020,09:59,10-08-2020,10:14,82.45454545,mobile,Once a week,45 - 54 years,I don’t have any children,Philippines,Pump spray,No,I only use it on specific occasions,Male,Anxious sweater,Has a fragrance I like
982,,,,,,,,,,,,,,,,,,,,,,,5375032,10-08-2020,09:59,,,,mobile,Twice a week,35 - 44 years,Two,UK,Roll-on,Yes,I use it multiple times a day,Female,Heavy sweater,It prevents / controls against wetness
983,1,5,4,4,new product,none,no,5,4,5,5,5,1,1,1,1,1,7,7,7,7,7,7555384,10-08-2020,10:00,10-08-2020,10:03,18.5,desktop,3+ times a week,25 - 34 years,I don’t have any children,India,Aerosol Spray,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against wetness
984,1,4,4,4,It is interesting that there is a product that releases cooling ingredients when activated by body temperature. ,n/a,n/a,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,8637737,10-08-2020,10:00,10-08-2020,10:05,24.25,mobile,Twice a week,25 - 34 years,I don’t have any children,Philippines,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It’s natural / contains natural ingredients
985,1,5,4,5,I like the cooling sensation the most.,N/A,N/A,5,5,1,5,5,3,1,1,1,1,5,7,2,7,7,8730889,10-08-2020,10:01,10-08-2020,10:12,54.08333333,desktop,,,,,,,,,,
986,1,5,5,5,Everything is special about it when it comes to the heat bringing something to the table being comfortable in this type of weather this time of year around,Love the idea,Want to change anything about it is fantastic,4,4,5,4,5,1,1,1,1,1,7,7,7,7,7,5387501,10-08-2020,10:01,10-08-2020,10:16,77.25,mobile,3+ times a week,35 - 44 years,Two,US,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against wetness
987,,,,,,,,,,,,,,,,,,,,,,,7561650,10-08-2020,10:01,,,,desktop,3+ times a week,25 - 34 years,Two,UK,Aerosol Spray,Yes,I use it multiple times a day,Male,Anxious sweater,It does not cause white marks / stains on skin or clothes
988,1,1,3,1,Nothing,Just don't like the idea,NO,2,4,4,3,4,1,3,1,1,1,1,4,4,4,5,7590188,10-08-2020,10:01,10-08-2020,10:05,20.83333333,desktop,3+ times a week,65 years +,I don’t have children under the age of 18,UK,I don't use any,No,I rarely / never use deodorant,Male,Non-sweater,I don't use any
989,1,5,5,4,"I naturally sweat a lot, so any product that helps with that is always very appealing to me. The most interesting part here is the product's ability to react based on my body temperature.",n/a,n/a,4,3,5,5,4,2,1,1,1,3,4,6,6,7,5,8665301,10-08-2020,10:02,10-08-2020,10:14,60.66666667,desktop,3+ times a week,25 - 34 years,One,Philippines,Roll-on,Yes,"I use it most days, but not every day",Male,Heavy sweater,It prevents / controls against wetness
990,,,,,,,,,,,,,,,,,,,,,,,7618341,10-08-2020,10:02,,,,mobile,3+ times a week,35 - 44 years,Three,South Africa,Aerosol Spray,Yes,"I use it most days, but not every day",Male,Normal sweater,Has a fragrance I like
991,1,5,3,5,A cooling sensation activated to keep cool,Not quite sure how it will work out and for how long,Nothing to change ,5,5,5,5,5,5,1,1,1,1,1,6,5,7,7,6906196,10-08-2020,10:02,10-08-2020,10:15,67.08333333,desktop,Once a week,25 - 34 years,I don’t have children under the age of 18,US,Stick,Yes,I use it multiple times a day,Female,Anxious sweater,It prevents / controls against odour
992,1,5,5,5,Great value,Highly recommended,Best one,5,5,5,4,5,5,4,5,5,4,,,,,,8595695,10-08-2020,10:02,,,,desktop,3+ times a week,35 - 44 years,Two,India,Pump spray,Yes,I use it multiple times a day,Female,Excessive sweater,It prevents / controls against odour
993,1,5,3,5,where it makes your deodorant last longer when it breaks down because of the hot climate,n/a,probably the name,3,4,4,5,5,4,1,1,1,1,1,7,6,6,7,5384826,10-08-2020,10:03,10-08-2020,10:09,34.08333333,desktop,Never,45 - 54 years,I don’t have children under the age of 18,US,Stick,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
994,1,5,5,5,Its creativity and natural appeal,None,N/A,5,5,5,5,5,1,1,1,1,1,7,7,7,7,7,7605453,10-08-2020,10:03,10-08-2020,10:06,19.16666667,mobile,Twice a week,25 - 34 years,I don’t have children under the age of 18,South Africa,Roll-on,Yes,I use it multiple times a day,Male,Normal sweater,It prevents / controls against odour
995,1,4,4,4,I like anything that will cool me down when out and about,Nothing,No ,5,5,5,5,5,2,1,1,1,1,5,5,6,6,6,6899686,10-08-2020,10:03,10-08-2020,10:06,14.41666667,desktop,Never,55 - 64 years,I don’t have children under the age of 18,UK,Roll-on,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour
996,1,5,5,4,Gff gfd ffcb hsjn,N/a,Gfatd,5,5,5,5,5,4,3,5,4,4,6,7,7,5,6,6917572,10-08-2020,10:03,10-08-2020,10:06,13.58333333,mobile,Twice a week,25 - 34 years,Two,US,Aerosol Spray,Yes,I use it at least once a day,Female,Heavy sweater,It prevents / controls against wetness
997,1,4,3,3,seems high yec and may be good on a long hot day,nothing,na,3,4,4,5,5,2,3,3,1,1,3,5,5,7,7,7619326,10-08-2020,10:03,10-08-2020,10:08,26.58333333,desktop,Twice a week,65 years +,One,Australia,Roll-on,Yes,I use it at least once a day,Male,Normal sweater,Has a fragrance I like
998,1,5,4,4,This product is suitable to me as I sweat quickly when running or working out,n/a,n/a,3,5,4,4,5,5,3,2,3,4,3,6,6,6,5,5410846,10-08-2020,10:03,10-08-2020,10:17,69.58333333,desktop,Twice a week,65 years +,I don’t have children under the age of 18,Australia,Cream,Yes,"I use it most days, but not every day",Female,Normal sweater,It prevents / controls against odour
999,1,4,3,3,if it works it is a good idea,n/a,n/a,3,4,4,5,5,3,3,3,3,3,4,5,5,7,7,5367012,10-08-2020,10:03,10-08-2020,10:06,16.45454545,desktop,Never,55 - 64 years,I don’t have children under the age of 18,UK,Aerosol Spray,Yes,I use it at least once a day,Female,Normal sweater,It prevents / controls against odour