diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js
index cf0891587f47734cbba6c4b19eed7e44d2456b2c..2d1e3544d9b9a3c75dd40716f6fe165c3b8582f7 100644
--- a/src/endWeek/reports/dairyReport.js
+++ b/src/endWeek/reports/dairyReport.js
@@ -1223,19 +1223,19 @@ App.EndWeek.dairyReport = function() {
 	} else {
 		_outputCum = 0;
 	}
-	r.push(`${_dairyNameCaps} produced ${_milkWeek + _outputMilk} liters of milk`);
+	r.push(`${_dairyNameCaps} produced ${commaNum(_milkWeek + _outputMilk)} liters of milk`);
 	if (_cumWeek > 0) {
 		r.push(`and ${_cumWeek + _outputCum} liters of cum`);
 	}
 	r.push(`this week.`);
 	if (_inflatedSlaves.milk > 0) {
-		r.push(`${_outputMilk} liters of milk were pumped into your penthouse for filling slaves this week.`);
+		r.push(`${commaNum(_outputMilk)} liters of milk were pumped into your penthouse for filling slaves this week.`);
 	}
 	if (_inflatedSlaves.cum > 0) {
 		if (_inflatedSlaves.milk > 0) {
 			r.push(`and `);
 		}
-		r.push(`${_outputCum} liters of cum were pumped into your penthouse`);
+		r.push(`${commaNum(_outputCum)} liters of cum were pumped into your penthouse`);
 		if (_inflatedSlaves.milk > 0) {
 			r.push(`as well.`);
 		} else {
@@ -1243,7 +1243,7 @@ App.EndWeek.dairyReport = function() {
 		}
 	}
 	if (_femCumWeek > 0) {
-		r.push(`The machines also managed to reclaim ${_femCumWeek} liters of salable vaginal secretions.`);
+		r.push(`The machines also managed to reclaim ${commaNum(_femCumWeek)} liters of salable vaginal secretions.`);
 	}
 	if (_births > 1) {
 		r.push(`Additionally, ${_birthers} cows gave birth`);
@@ -1365,11 +1365,11 @@ App.EndWeek.dairyReport = function() {
 				}
 				r.push(`body, and mind have been completely adapted to synthesize useful products. ${He} has been reclassified as part of the machine ${he}'s now permanently attached to. This combination is projected to produce approximately`);
 				if (slave.balls > 0) {
-					r.push(1000 * Math.trunc((_BF[_gender].cum * _ageInWeeks) / 1000));
+					r.push(commaNum(1000 * Math.trunc((_BF[_gender].cum * _ageInWeeks) / 1000)));
 					r.push(`liters of cum,`);
 				}
 				if (slave.ovaries === 1) {
-					r.push(100 * Math.trunc((_BF[_gender].femCum * _ageInWeeks) / 100));
+					r.push(commaNum(100 * Math.trunc((_BF[_gender].femCum * _ageInWeeks) / 100)));
 					r.push(`liters of vaginal secretions,`);
 					if (V.dairyPregSetting === 3) {
 						r.push(13 * (V.retirementAge - slave.physicalAge));
@@ -1379,7 +1379,7 @@ App.EndWeek.dairyReport = function() {
 					r.push(`slaves,`);
 				}
 				r.push(`and`);
-				r.push(1000 * Math.trunc((_BF[_gender].milk * _ageInWeeks) / 1000));
+				r.push(commaNum(1000 * Math.trunc((_BF[_gender].milk * _ageInWeeks) / 1000)));
 				r.push(`liters of milk over a`);
 				r.push(V.retirementAge - slave.physicalAge);
 				r.push(`year period before its biological components must be replaced.`);