commas instead of decimal | XM Community
Skip to main content
Question

commas instead of decimal

  • January 3, 2025
  • 1 reply
  • 34 views

Aggarwal
Level 4 ●●●●
Forum|alt.badge.img+15

I have a numeric question and I am allowing user to enter value with 1 decimal point with default validation. But I noticed that some users in Europe are entering ", " Instead of "." in open field and system is allowing it. Due to this dashboard is not showing correct data, how can I avoid same? 

1 reply

Forum|alt.badge.img+6
  • QPN Level 2 ●●
  • 40 replies
  • January 3, 2025

@Aggarwal , you can use REGEX to remove comma. 
something like- 
 

var input = jQuery(this).val();
var result = input.replace(/,/g, ''); //remove comma

Qualtrics.SurveyEngine.setEmbeddedData("some embedded data",result)

and can use the embedded data for dashboard. let me know if that works.


Leave a Reply