My data comes with sample weights to make it representative of a school district. I know to tabulate summary, I can do

Code:
tab class_gender
to yield count and percentages.

However how can it be possible to do this exact thing while at the same time including the person-weights in my data that I got?

My attempt
Code:
tabulate class_gender [pweight=SAMPLEWEIGHT]
yields counts, however I seek assistance for code that can include the sample weighted counts and percentages and not in science notation. Cheers!