Hi Mates,
Date values show differs in Different Browsers.(Using OOB Date Pickers)
In Google Chrome it shows: January,20,2021
In Microsoft Edge and IE, it Shows: 1/20/2021
Yes, it's not an issue but how to maintain consistency formate.
Solved! Go to Solution.
Hi @muralikrishna12 ,
This is because PowerApps displays date formats based on the language setting of your browser. You can change all browsers using a same language, but I think this is too much trouble.
For a easy way to maintain consistency format for datapicker control, you can change the Format property of your DatePicker control(The language of browser will be automatically added as a prefix after saving the formula):
Text(DatePicker1.SelectedDate, "mm/dd/yyyy")
This time, Date Picker show same value in Different Browsers(I just test in edge and Chrome). Below is the result after change the Format property of your DatePicker control in Chrome and Edge:
Best Regards,
Allen
Hi @muralikrishna12 ,
This is because PowerApps displays date formats based on the language setting of your browser. You can change all browsers using a same language, but I think this is too much trouble.
For a easy way to maintain consistency format for datapicker control, you can change the Format property of your DatePicker control(The language of browser will be automatically added as a prefix after saving the formula):
Text(DatePicker1.SelectedDate, "mm/dd/yyyy")
This time, Date Picker show same value in Different Browsers(I just test in edge and Chrome). Below is the result after change the Format property of your DatePicker control in Chrome and Edge:
Best Regards,
Allen
In Default property i need to set Today date,
If i set Today() , then its fine
but i am using the same form so i need to check if it is new form or edit form
so If(FormText= "New", Today(), Parent.Defalt)
Then it shows some thing wrong
User | Count |
---|---|
4 | |
3 | |
1 | |
1 | |
1 |
User | Count |
---|---|
6 | |
5 | |
4 | |
3 | |
1 |