% DIM yy, mm, dd, dag, vdag yy=year(date) mm=month(date) dd=day(date) if mm="11" then mm=" november " if mm="12" then mm=" december " if mm="1" then mm=" januari " if mm="2" then mm=" februari " if mm="3" then mm=" mars " if mm="4" then mm=" april " if mm="5" then mm=" maj " if mm="6" then mm=" juni " if mm="7" then mm=" juli " if mm="8" then mm=" augusti " if mm="9" then mm=" september " if mm="10" then mm=" oktober " dag=weekday(date) if dag=1 then vdag="Söndag " if dag=2 then vdag="Måndag " if dag=3 then vdag="Tisdag " if dag=4 then vdag="Onsdag " if dag=5 then vdag="Torsdag " if dag=6 then vdag="Fredag " if dag=7 then vdag="Lördag " datum=vdag & dd & mm & yy RANDOMIZE fpage=INT((3-1+1)*RND+1) %>
|
|
|
|
|