Hello,
In my list, there are two columns, Men and Women. Men value is '10', Women value is '5'.
I wan to convert following formula to use in an if else statement:
if (Men - Women) / Men == '50' to '100' then show this...
I am using following but its not working:
<% if (Number(targetData.Men) - Number(targetData.Women)) / Number(targetData.Men) =='50' to'100" ) { show this}
else { show this} %>
Any idea how to edit this statement to make it work?
Thanks!